@charset "UTF-8";
/* CSS Document */
.inner {
  width: 73%;
  margin: auto; }
  @media screen and (max-width: 1399px) {
    .inner {
      width: 85%; } }
  @media screen and (max-width: 991px) {
    .inner {
      width: 100%; } }
  @media screen and (max-width: 575px) {
    .inner {
      width: 90%; } }

.main-midashi {
  font-family: "Kiwi Maru", serif;
  font-size: 36px;
  font-size: 3.6rem;
  color: #1E2D6C;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem; }
  .main-midashi::before {
    content: '';
    position: relative;
    display: inline-block;
    background-image: url("../img/title-left.svg");
    background-repeat: no-repeat;
    background-size: auto;
    width: 50px;
    height: 100px;
    right: 1%; }
    @media screen and (max-width: 767px) {
      .main-midashi::before {
        width: 40px;
        height: 70px;
        right: 2%; } }
  .main-midashi::after {
    content: '';
    position: relative;
    display: inline-block;
    background-image: url("../img/title-right.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 50px;
    height: 100px;
    left: 1%; }
    @media screen and (max-width: 767px) {
      .main-midashi::after {
        width: 40px;
        height: 80px;
        left: 2%; } }
  @media screen and (max-width: 1199px) {
    .main-midashi {
      margin-bottom: 3rem; } }
  @media screen and (max-width: 991px) {
    .main-midashi {
      font-size: 30px;
      font-size: 3rem;
      letter-spacing: 3px;
      margin-bottom: 0.5em; } }
  @media screen and (max-width: 575px) {
    .main-midashi {
      font-size: 25px;
      font-size: 2.5rem;
      letter-spacing: normal;
      margin-bottom: 0.5em; } }

.main_link {
  color: #fff;
  background: #0059FF;
  border: 1px solid #0059FF;
  border-radius: 3rem;
  transition: 0.3s; }
  .main_link:hover {
    color: #0059FF;
    background: #fff; }

#page404 {
  padding-top: 150px;
  padding-bottom: 230px; }
  @media screen and (max-width: 1199px) {
    #page404 {
      padding-top: 130px; } }
  @media screen and (max-width: 767px) {
    #page404 {
      padding-top: 100px; } }
  @media screen and (max-width: 575px) {
    #page404 {
      padding-top: 80px; } }
  #page404 h2 {
    font-family: "Kiwi Maru", serif;
    font-weight: bold;
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 2rem; }
    @media screen and (max-width: 575px) {
      #page404 h2 {
        font-size: 25px;
        font-size: 2.5rem; } }
    #page404 h2 span {
      font-size: 130px;
      font-size: 13rem; }
      @media screen and (max-width: 575px) {
        #page404 h2 span {
          font-size: 100px;
          font-size: 10rem; } }
  #page404 h3 {
    font-family: "Kiwi Maru", serif;
    font-weight: bold;
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 2rem; }
    @media screen and (max-width: 1199px) {
      #page404 h3 {
        font-size: 35px;
        font-size: 3.5rem; } }
    @media screen and (max-width: 767px) {
      #page404 h3 {
        font-size: 25px;
        font-size: 2.5rem; } }
    @media screen and (max-width: 575px) {
      #page404 h3 {
        font-size: 18px;
        font-size: 1.8rem; } }
  #page404 .main-midashi {
    margin: 2em;
    text-align: center; }
  #page404 a {
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #0059FF;
    color: #fff;
    border-radius: 2.5rem;
    border: solid 1px #0059FF;
    line-height: 1;
    padding: 1.3rem 2rem;
    transition: 0.3s;
    margin-top: 2rem; }
    @media screen and (max-width: 767px) {
      #page404 a {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 1rem 1.5rem; } }
    @media screen and (max-width: 575px) {
      #page404 a {
        font-size: 15px;
        font-size: 1.5rem; } }
    #page404 a:hover {
      background-color: #fff;
      color: #0059FF; }

/*---------- header ----------*/
header {
  /* Chrome, Safari用 */
  background: url("../img/header-wave.svg"), linear-gradient(180deg, #ffdcb4 50%, rgba(255, 220, 180, 0) 50%);
  background-repeat: no-repeat;
  background-size: cover,100%;
  background-position: bottom center;
  height: 210px;
  position: relative;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999; }
  @media screen and (max-width: 1199px) {
    header {
      height: 170px; } }
  @media screen and (max-width: 991px) {
    header {
      background-size: auto,100%;
      height: 150px; } }
  @media screen and (max-width: 767px) {
    header {
      height: 133px; } }
  @media screen and (max-width: 575px) {
    header {
      height: 100px;
      background: url("../img/header-wave-xs.svg"), linear-gradient(180deg, #ffdcb4 50%, rgba(255, 220, 180, 0) 50%);
      background-repeat: no-repeat;
      background-size: cover,100%;
      background-position: bottom center; } }
  header .header-container {
    display: flex;
    justify-content: space-between; }
    header .header-container .d-flex {
      margin: 1.5rem 3rem; }
      @media screen and (max-width: 767px) {
        header .header-container .d-flex {
          margin: 1.5rem 2rem; } }
      @media screen and (max-width: 575px) {
        header .header-container .d-flex {
          margin: 1rem; } }
      header .header-container .d-flex div {
        width: 130px;
        height: 145px; }
        @media screen and (max-width: 1399px) {
          header .header-container .d-flex div {
            width: 120px;
            height: 130px; } }
        @media screen and (max-width: 1199px) {
          header .header-container .d-flex div {
            width: 100px;
            height: 110px; } }
        @media screen and (max-width: 991px) {
          header .header-container .d-flex div {
            width: 80px;
            height: 90px; } }
        @media screen and (max-width: 767px) {
          header .header-container .d-flex div {
            width: 70px;
            height: 80px; } }
        @media screen and (max-width: 575px) {
          header .header-container .d-flex div {
            width: 65px;
            height: 75px; } }
        header .header-container .d-flex div img {
          width: 100%; }
      header .header-container .d-flex h1 {
        font-size: 10px;
        font-size: 1rem;
        font-weight: normal;
        color: #1E2D6C;
        margin: 3rem 0 0 5rem; }
        @media screen and (max-width: 1399px) {
          header .header-container .d-flex h1 {
            margin: 3rem 0 0 3rem; } }
        @media screen and (max-width: 1199px) {
          header .header-container .d-flex h1 {
            margin: 2rem 0 0 2rem; } }
        @media screen and (max-width: 991px) {
          header .header-container .d-flex h1 {
            margin: 1.5rem 0 0 2rem; } }
        @media screen and (max-width: 767px) {
          header .header-container .d-flex h1 {
            margin: 0.5rem 0 0 1.5rem; } }
        @media screen and (max-width: 575px) {
          header .header-container .d-flex h1 {
            margin: 0.5rem 0 0 1rem; } }
        header .header-container .d-flex h1 span {
          display: block;
          font-family: "Kiwi Maru", serif;
          font-size: 36px;
          font-size: 3.6rem;
          color: #1E2D6C; }
          @media screen and (max-width: 1399px) {
            header .header-container .d-flex h1 span {
              font-size: 32px;
              font-size: 3.2rem; } }
          @media screen and (max-width: 1199px) {
            header .header-container .d-flex h1 span {
              font-size: 25px;
              font-size: 2.5rem; } }
          @media screen and (max-width: 575px) {
            header .header-container .d-flex h1 span {
              font-size: 16px;
              font-size: 1.6rem; } }
    @media screen and (max-width: 575px) {
      header .header-container ul {
        display: none; } }
    header .header-container ul li:first-child a {
      transition: 0.3s;
      background-color: #E88406;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      font-size: 18px;
      font-size: 1.8rem;
      padding: 2rem 3rem; }
      @media screen and (max-width: 1199px) {
        header .header-container ul li:first-child a {
          padding: 1rem 2rem; } }
      header .header-container ul li:first-child a img {
        width: 45px;
        padding-right: 1rem; }
        @media screen and (max-width: 767px) {
          header .header-container ul li:first-child a img {
            width: 35px; } }
      header .header-container ul li:first-child a:hover {
        background-color: #CE7A29; }
    header .header-container ul li:last-child a {
      transition: 0.3s;
      background-color: #0059FF;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      font-size: 18px;
      font-size: 1.8rem;
      padding: 2rem 3rem; }
      @media screen and (max-width: 1199px) {
        header .header-container ul li:last-child a {
          padding: 1rem 2rem; } }
      header .header-container ul li:last-child a img {
        width: 45px;
        padding-right: 1rem; }
        @media screen and (max-width: 767px) {
          header .header-container ul li:last-child a img {
            width: 35px; } }
      header .header-container ul li:last-child a:hover {
        background-color: #2B569B; }

/*------ スマホ用ヘッダー ------*/
.mobile-nav {
  position: fixed;
  bottom: -1px;
  z-index: 10;
  width: 100%; }
  .mobile-nav ul {
    display: flex;
    width: 100%;
    margin-bottom: 0; }
    .mobile-nav ul li:first-child {
      width: 50%; }
      .mobile-nav ul li:first-child a {
        transition: 0.3s;
        background-color: #E88406;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-size: 1.8rem;
        padding: 2rem 3rem; }
        @media screen and (max-width: 1199px) {
          .mobile-nav ul li:first-child a {
            padding: 1rem 2rem; } }
        .mobile-nav ul li:first-child a img {
          width: 45px;
          padding-right: 1rem; }
          @media screen and (max-width: 767px) {
            .mobile-nav ul li:first-child a img {
              width: 35px; } }
        .mobile-nav ul li:first-child a:hover {
          background-color: #CE7A29; }
    .mobile-nav ul li:last-child {
      width: 50%; }
      .mobile-nav ul li:last-child a {
        transition: 0.3s;
        background-color: #0059FF;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-size: 1.8rem;
        padding: 2rem 3rem; }
        @media screen and (max-width: 1199px) {
          .mobile-nav ul li:last-child a {
            padding: 1rem 2rem; } }
        .mobile-nav ul li:last-child a img {
          width: 45px;
          padding-right: 1rem; }
          @media screen and (max-width: 767px) {
            .mobile-nav ul li:last-child a img {
              width: 35px; } }
        .mobile-nav ul li:last-child a:hover {
          background-color: #2B569B; }

footer {
  background: #E5420D;
  background: linear-gradient(90deg, #e5420d 0%, #e79d44 100%);
  mask-image: url("../img/footer-wave.svg"), url("../img/square.svg");
  mask-repeat: repeat-x, repeat-x;
  mask-position: center top, center bottom;
  mask-size: 100%, 25%;
  mask-composite: add;
  /* Chrome, Safari用 */
  -webkit-mask-image: url("../img/footer-wave.svg"), url("../img/square.svg");
  -webkit-mask-repeat: repeat-x, repeat-x;
  -webkit-mask-position: center top, center bottom;
  -webkit-mask-size: 100%, 25%;
  -webkit-mask-composite: add;
  height: 540px;
  position: relative;
  z-index: 5;
  margin-top: -200px;
  padding-top: 120px; }
  @media screen and (max-width: 1399px) {
    footer {
      mask-size: 100%, 30%;
      -webkit-mask-size: 100%, 30%;
      padding-top: 85px;
      height: 500px; } }
  @media screen and (max-width: 1199px) {
    footer {
      mask-size: 100%, 40%;
      -webkit-mask-size: 100%, 40%; } }
  @media screen and (max-width: 991px) {
    footer {
      padding-top: 50px;
      height: 410px; } }
  @media screen and (max-width: 767px) {
    footer {
      mask-size: 100%, 60%; } }
  @media screen and (max-width: 575px) {
    footer {
      mask-size: 100%, 150%;
      height: 600px; } }
  footer .footer-logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff; }
    @media screen and (max-width: 991px) {
      footer .footer-logo {
        font-size: 25px;
        font-size: 2.5rem; } }
    @media screen and (max-width: 575px) {
      footer .footer-logo {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 16px;
        font-size: 1.6rem; } }
    footer .footer-logo img {
      width: 128px; }
      @media screen and (max-width: 991px) {
        footer .footer-logo img {
          width: 100px; } }
      @media screen and (max-width: 575px) {
        footer .footer-logo img {
          width: 120px;
          margin-bottom: 2rem; } }
  footer .d-flex {
    margin-top: 2rem;
    justify-content: space-between; }
    @media screen and (max-width: 575px) {
      footer .d-flex {
        flex-wrap: wrap;
        justify-content: center; } }
    footer .d-flex p {
      color: #fff; }
      footer .d-flex p span {
        font-size: 19px;
        font-size: 1.9rem; }
    footer .d-flex ul {
      text-align: end; }
      @media screen and (max-width: 575px) {
        footer .d-flex ul {
          text-align: center; } }
      footer .d-flex ul li {
        margin-bottom: 0.5rem; }
        footer .d-flex ul li a {
          transition: 0.3s;
          color: #fff; }
          footer .d-flex ul li a img {
            width: 50px; }
          footer .d-flex ul li a:hover {
            opacity: 0.5; }
  footer .copyright {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 1rem; }
