@charset "UTF-8";
/*=================追加のリセット=================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

input, textarea {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  color: #2b2b34;
}

.en_sub {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

.strng {
  font-weight: 500;
}

.line {
  display: inline-block;
  -webkit-text-decoration: underline 1.5px solid #2b2b34;
          text-decoration: underline 1.5px solid #2b2b34;
  text-underline-offset: 0.15rem;
}

a {
  text-decoration: none;
  outline: none;
  margin-bottom: 0;
}

img {
  vertical-align: bottom;
  /*==================フルードイメージ==================*/
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

/*================追加のリセットここまで=================*/
.cont {
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.break {
  display: inline-block;
}

#header {
  position: fixed;
  background-color: #94d4eb;
  width: 100%;
  height: 70px;
  -webkit-box-shadow: 0px 0px 4px hsla(0, 0%, 0%, 0.3);
          box-shadow: 0px 0px 4px hsla(0, 0%, 0%, 0.3);
  z-index: 1000;
}
#header .cont {
  max-width: 800px;
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
#header .logo {
  display: inline-block;
  position: relative;
  left: 0;
}
#header #ham {
  display: none;
}
#header .nav_box {
  position: relative;
  top: 0;
  right: -1rem;
  height: 100%;
}
#header .nav_box .nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#header .nav_box .nav_list .nav_item a {
  font-size: 14px;
  font-weight: 500;
  color: #0070a1;
  width: 7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
}
#header .nav_box .nav_list .nav_item a span {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-size: 12px;
}
#header .nav_box .nav_list .nav_item a ::before {
  content: "";
  position: absolute;
  background-color: #0070a1;
  top: 50%;
  left: 0%;
  height: 2px;
  width: 100%;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#header .nav_box .nav_list .nav_item a:hover ::before,
#header .nav_box .nav_list .nav_item a :active ::before {
  -webkit-transform: scale(0.8, 1);
          transform: scale(0.8, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
@media (max-width: 730px) {
  #header #ham {
    display: block;
    position: relative;
    width: 40px;
    height: 35px;
    z-index: 1;
  }
  #header #ham .bar {
    position: absolute;
    background-color: #0070a1;
    right: 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  #header #ham .bar:nth-child(1) {
    width: 50%;
    height: 2.5px;
    top: 0;
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
  }
  #header #ham .bar:nth-child(2) {
    width: 75%;
    height: 5px;
    top: 35%;
  }
  #header #ham .bar:nth-child(3) {
    width: 100%;
    height: 8px;
    bottom: 0;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
  }
  #header .nav_box {
    background-color: rgba(147, 212, 235, 0.9);
    position: absolute;
    text-align: center;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 0vh;
    opacity: 0;
  }
  #header .nav_box .nav_list {
    display: inline-block;
    margin-top: 70px;
    margin-bottom: 40px;
  }
  #header .nav_box .nav_list .nav_item a {
    width: 100vw;
    font-size: 16px;
    font-weight: 500;
    color: #0070a1;
    display: block;
    padding-block: 10px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: relative;
  }
  #header .nav_box .nav_list .nav_item a span {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  #header .nav_box .nav_list .nav_item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0070a1;
    width: 100%;
    height: 1px;
  }
  #header .nav_box .nav_list .nav_item a:hover,
  #header .nav_box .nav_list .nav_item a :active {
    background-color: #0070a1;
    color: #fff;
  }
  #header .nav_box .nav_list .nav_item a:hover ::before,
  #header .nav_box .nav_list .nav_item a :active ::before {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  #header .nav_box .nav_list .nav_item a span {
    display: block;
    font-size: 14px;
  }
  #header .nav_box .nav_list .nav_item:last-child a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #0070a1;
    width: 100%;
    height: 1px;
  }
}

.open {
  overflow: hidden;
}
.open #header #ham .bar {
  position: absolute;
  background-color: #0070a1;
  right: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.open #header #ham .bar:nth-child(1) {
  width: 46.5px;
  height: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.open #header #ham .bar:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.open #header #ham .bar:nth-child(3) {
  width: 46.5px;
  height: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #header .nav_box {
  top: 0;
  height: 100vh;
  opacity: 1;
}

.section {
  padding-top: 100px;
  padding-bottom: 150px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s ease, -webkit-transform 0.7s ease;
  transition: opacity 1s ease, -webkit-transform 0.7s ease;
  transition: opacity 1s ease, transform 0.7s ease;
  transition: opacity 1s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
@media (max-width: 1020px) {
  .section {
    padding-bottom: 100px;
  }
}
.section.fade_up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section h1 {
  text-align: center;
}
.section .ttl_cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
.section .ttl_cont .ttl {
  position: relative;
  z-index: 1;
}
.section .ttl_cont .ttl h2 {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #fff;
  color: #0070a1;
  margin: 0 auto;
  text-align: center;
  padding-inline: 10px;
}
.section .ttl_cont .ttl::before {
  background-color: #0070a1;
  content: "";
  position: absolute;
  left: 0;
  top: 42%;
  width: 100%;
  height: 2px;
  z-index: -1;
}
.section .ttl_cont .ttl::after {
  background-color: #0070a1;
  content: "";
  position: absolute;
  left: 0;
  bottom: 42%;
  width: 100%;
  height: 2px;
  z-index: -1;
}
.section .ttl_cont .en_dec {
  color: #0070a1;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section .ttl_cont .en_dec::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/ttl_dc01.svg);
  background-repeat: no-repeat;
  width: 65px;
  height: 21px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section:nth-of-type(odd) {
  position: relative;
  background-color: #0070a1;
  overflow: hidden;
}
.section:nth-of-type(odd) h1,
.section:nth-of-type(odd) h2,
.section:nth-of-type(odd) h3,
.section:nth-of-type(odd) h4,
.section:nth-of-type(odd) p,
.section:nth-of-type(odd) a {
  color: #fff;
}
.section:nth-of-type(odd) .ttl_cont .ttl h2 {
  background-color: #0070a1;
  color: #fff;
}
.section:nth-of-type(odd) .ttl_cont .ttl::before {
  background-color: #fff;
}
.section:nth-of-type(odd) .ttl_cont .ttl::after {
  background-color: #fff;
}
.section:nth-of-type(odd) .ttl_cont .en_dec {
  color: #fff;
}
.section:nth-of-type(odd) .ttl_cont .en_dec::before {
  background-image: url(../images/common/ttl_dc02.svg);
  width: 70px;
  height: 35px;
}
.section:nth-of-type(odd)::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0px;
  background-image: url(../images/common/sec_dc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1729/163;
  width: 130%;
  opacity: 1;
  z-index: 1;
}
@media (max-width: 730px) {
  .section:nth-of-type(odd)::before {
    right: -10%;
    width: 195%;
  }
}
.section:nth-of-type(even) {
  background-color: #fff;
}
.section .btn {
  width: 70%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 10px;
  border-radius: 50px;
  text-align: center;
  z-index: 1;
}
.section .btn a {
  position: relative;
  background-color: #fff;
  color: #0070a1;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  display: inline-block;
  padding-block: 8px;
  width: 100%;
  height: 100%;
  border: 1.5px solid #94d4eb;
  border-radius: 50px;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.section .btn a i {
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.section .btn::before {
  position: absolute;
  content: "";
  background-color: #94d4eb;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  top: 2px;
  left: 2px;
  z-index: -10;
}
.section .click a {
  color: #ff9100;
  border-color: #ff9100;
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
.section .click a i {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

#toTopCont {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: calc(90% - 1rem);
  max-width: 1000px;
  height: 100px;
  z-index: 100;
}
#toTopCont.show {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (max-width: 730px) {
  #toTopCont {
    height: 80px;
  }
}

#toTop {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1/1;
  width: 60px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0.8;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
}
#toTop p {
  position: relative;
  font-size: 1rem;
  margin-top: 20px;
  color: #0070a1;
  text-align: center;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
#toTop p::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/to_top.svg);
  aspect-ratio: 29/18;
  width: 12px;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
  z-index: 1;
}
#toTop:hover {
  opacity: 1;
}

#footer {
  position: relative;
  background-color: #94d4eb;
  padding-block: 4rem;
  overflow: hidden;
}
#footer .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .cont h3,
#footer .cont p,
#footer .cont a {
  color: #0070a1;
}
#footer .cont h3 {
  font-size: 1.125rem;
  font-weight: 500;
  width: 20rem;
  text-align: center;
  padding-block: 0.5rem;
  margin-bottom: 2rem;
  border-top: 1.5px solid #0070a1;
  border-bottom: 1.5px solid #0070a1;
}
#footer .cont .add {
  margin-bottom: 3rem;
}
#footer .cont .footer_logo {
  margin-bottom: 3rem;
}
#footer .cont .copyright {
  color: #0070a1;
  font-weight: 500;
  z-index: 1;
}
#footer::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0%;
  background-image: url(../images/common/sec_dc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1729/163;
  width: 130%;
}
@media (max-width: 730px) {
  #footer::before {
    right: -10%;
    width: 195%;
  }
}/*# sourceMappingURL=common.css.map */