@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  font-family: "Noto Serif JP";
  background: #FFFFFF;
}

.inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.head {
  text-align: center;
  padding-top: 96px;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .head {
    padding-top: 160px;
  }
}
.head_name {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  position: relative; /* 擬似要素を親基準にする */
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .head_name {
    font-size: 40px;
  }
}
.head_name::after {
  content: "";
  position: absolute;
  bottom: -28px; /* 下端に配置 */
  left: 50%; /* 中央を基準に */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); /* 左右中央揃え */
  width: 60px; /* 下線の長さ */
  height: 1px; /* 線の太さ */
  background-color: #3EA1D1; /* 線の色 */
}
@media screen and (min-width: 768px) {
  .head_name::after {
    bottom: -24px;
  }
}

.button {
  margin-top: 42px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
  color: #3EA1D1;
  width: 158px;
  padding: 11px 3px;
  border: 1px solid #3EA1D1;
  text-align: center;
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  color: #FFFFFF;
  background-color: #3EA1D1;
}
@media screen and (min-width: 768px) {
  .button {
    margin-top: 44px;
  }
}

.header {
  height: 60px;
  width: 100%;
  position: fixed;
  background: #FFFFFF;
  z-index: 51;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}
.header_inner {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header_inner {
    padding: 0px 40px;
  }
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.header_logo a img {
  display: block;
  width: 120px;
}
.header_nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 46px;
    font-weight: 300;
    font-family: "Noto Serif JP";
  }
}
.header_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
}
.header_nav-icon {
  margin: 0;
  position: relative;
  width: 30px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .header_nav-icon {
    display: none;
  }
}
.header_nav-icon.is-checked .header_nav-line:nth-of-type(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_nav-icon.is-checked .header_nav-line:nth-of-type(2) {
  opacity: 0;
}
.header_nav-icon.is-checked .header_nav-line:nth-of-type(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header_nav-line {
  width: 30px;
  height: 2px;
  background: #3EA1D1;
  position: absolute;
  top: 0;
  left: 0;
}
.header_nav-line:nth-of-type(2) {
  top: 9px;
}
.header_nav-line:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  position: fixed;
  top: 60px;
  right: 0;
  height: 100%;
  background: #3EA1D1;
  padding: 40px 15px 295px 177px;
  z-index: 49;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  text-align: right;
}
.drawer-content_link {
  color: #FFFFFF;
}

.mv {
  padding-top: 60px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv_inner {
    padding-top: 8px;
    height: 660px;
    padding-right: 40px;
    padding-left: 250px;
    position: relative;
  }
}
.mv_img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv_img {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .mv_img img {
    width: 100%;
    max-width: 990px;
    height: auto;
  }
}
.mv_content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .mv_content {
    margin-top: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    padding: 80px 40px;
    background: #FFFFFF;
  }
}
.mv_head {
  font-size: 26px;
  font-weight: 600;
}
.mv_text {
  margin-top: 16px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .concept {
    padding-top: 8px;
  }
}
.concept_content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .concept_content {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .concept_img img {
    width: 600px;
  }
}
.concept_text {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .concept_text {
    margin-top: 0;
    width: 520px;
  }
}
.concept_text-head {
  font-size: 20px;
  font-weight: 600;
}
.concept_text-sub {
  margin-top: 22px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .concept_text-sub {
    margin-top: 40px;
    font-size: 16px;
  }
}

.feature {
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-bottom: 160px;
  }
}
.feature_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .feature_cards {
    margin-top: 55px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 90px;
  }
}
.feature_card {
  background: #FFF;
  -webkit-box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
}
.feature_img img {
  width: 100%;
}
.feature_text {
  color: #333333;
  font-weight: 600;
  text-align: center;
  padding: 26px 0;
}

.what_inner {
  position: relative;
}
.what_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}
.what_contents {
  color: #FFFFFF;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 180px;
}
@media screen and (min-width: 768px) {
  .what_contents {
    padding-left: 40px;
    padding-right: 40px;
    top: 123px;
  }
}
.what_head {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .what_head {
    font-size: 22px;
  }
}
.what_text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .what_text {
    font-size: 16px;
  }
}

.products_inner {
  padding-left: 56px;
  padding-right: 56px;
  text-align: center;
}
.products_cards {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .products_cards {
    margin-top: 55px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .products_card {
    width: 260px;
  }
}
.products_contents {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .products_contents {
    margin-top: 18px;
  }
}
.products_name {
  font-size: 14px;
  font-weight: 300;
}
.products_price {
  font-size: 14px;
  font-weight: 300;
  color: #989898;
}

.news {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news_inner {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.news_cards {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .news_cards {
    gap: 24px;
    margin-top: 58px;
  }
}
.news_card {
  border-bottom: 1px solid #E0E0E0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .news_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 23px;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .news_img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
  }
}
.news_img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news_img img {
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news_contents {
  margin-top: 16px;
  padding-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .news_contents {
    margin-top: 0;
    padding-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
.news_date {
  font-size: 14px;
  font-weight: 300;
}
.news_head {
  font-weight: 600;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .news_head {
    margin-top: 16px;
    font-size: 18px;
  }
}
.news_text {
  margin-top: 14px;
  color: #888;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .news_text {
    margin-top: 10px;
  }
}
.news_button {
  margin-top: 43px;
}

.conp {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .conp {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 768px) {
  .conp_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .conp_img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (min-width: 768px) {
  .conp_img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
  }
}
.conp_contents {
  margin-top: 32px;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .conp_contents {
    margin-top: 37px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
.conp_head {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .conp_head {
    font-size: 28px;
  }
}
.conp_text {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .conp_text {
    font-size: 16px;
    margin-top: 36px;
  }
}

.is-required {
  color: #E7728E;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .is-required {
    font-size: 14px;
  }
}

.contact_head {
  padding-top: 0;
}

.contact {
  padding-block: 56px;
  background: url(../img/contact_bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 80px;
    background: url(../img/contact_bg-pc.png) no-repeat center center/cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact_inner {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .contact_inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}
.contact_name {
  color: #3EA1D1;
}
.contact_text {
  font-size: 14px;
  font-weight: 600;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .contact_text {
    margin-top: 58px;
  }
}
.contact_form {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact_form {
    margin-top: 19px;
  }
}
.contact_fields {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact_fields {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .contact_field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

.form-head {
  background: #3EA1D1;
  opacity: 0.7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-head {
    width: 180px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    white-space: nowrap;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}
.form-lavel {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-lavel {
    font-size: 18px;
  }
}
.form-tag {
  color: #E7728E;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-tag {
    font-size: 12px;
  }
}
.form-item {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .form-item {
    margin-top: 0;
  }
}
.form-text {
  border: none;
  color: inherit;
  width: 100%;
  background: var(--ffffff, #FFF);
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  height: 40px;
}
.form-text:focus {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}
@media screen and (min-width: 768px) {
  .form-text {
    width: 320px;
  }
}
.form-textarea {
  ox-sizing: border-box;
  font: inherit;
  color: inherit;
  border: none;
  width: 100%;
  background: var(--ffffff, #FFF);
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  height: 122px;
  resize: vertical;
  font-size: 16px;
}
.form-textarea:focus {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}
@media screen and (min-width: 768px) {
  .form-textarea {
    width: 320px;
  }
}
.form-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .form-radios {
    margin-top: 0;
  }
}
.form-radio {
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.form-radio_input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio_input:checked + .form-radio_text {
  color: #FFFFFF;
  background-color: #3EA1D1;
}
.form-radio_input:focus + .form-radio_text {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}
.form-radio_text {
  letter-spacing: 0.026px;
  font-weight: 300;
  color: #3EA1D1;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.contact_privacy {
  margin-top: -4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact_privacy {
    margin-top: 0px;
  }
}

.form-checkbox {
  position: relative;
}
.form-checkbox_input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox_input:checked + .form-checkbox_text::after {
  opacity: 1;
}
.form-checkbox_input:focus + .form-checkbox_text::before {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}
.form-checkbox_text {
  padding-left: 30px;
}
.form-checkbox_text a {
  text-decoration: underline;
  color: #3EA1D1;
}
.form-checkbox_text::before, .form-checkbox_text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox_text::before {
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border: 1px solid #3EA1D1;
}
.form-checkbox_text::after {
  opacity: 0;
  width: 22px;
  height: 22px;
  left: 0px;
  background: url(../img/box.png) no-repeat center center/contain;
}

.contact_button {
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  .contact_button {
    margin-top: 0px;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}
.footer_contents {
  color: #333333;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  font-family: "Noto Serif JP";
}
@media screen and (min-width: 768px) {
  .footer_logo {
    margin-bottom: 10px;
  }
}
.footer_logo img {
  width: 120px;
}
.footer_poricy {
  display: block;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .footer_poricy {
    display: inline;
    margin-right: 32px;
  }
}
.footer_hyouki {
  display: block;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .footer_hyouki {
    display: inline-block;
  }
}
.footer_sns-icons {
  margin-top: 13px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer_sns-icons {
    margin-top: 14px;
    margin-bottom: 28px;
  }
}
.footer_copyright {
  color: #888;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}

.sns {
  width: 18px;
  height: 22.2px;
}