@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.7; /* 1.7を使用すると、要素内の任意のフォントサイズに対して1.7倍の行の高さが適用されます。
   一方、170%を使用すると、親要素から継承したフォントサイズに対してのみ170%が適用され（この場合16px）、
   子要素で異なるフォントサイズを指定した場合にも、親要素のフォントサイズに基づいた行の高さが維持されます。
   このケースでは1.7を使用することで、より柔軟な行の高さ制御が可能になります。 */
  font-weight: 300;
}

/* メディアクエリで非表示にするクラス */
@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
/* Inner（共通） */
.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

/* Section（共通） */
/* section__contentを使用するメリット:
1. 余白の管理が一元化でき、変更が容易
2. コンテンツ側で余白を持つことで、見出しの再利用性が高まる
3. マージンの相殺を考慮した設計がしやすい
4. 見出しとコンテンツの関係性が明確になる */
.section__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 64px;
  }
}

/* Heading（共通） */
.heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%; /* 行の高さを文字と同じに設定 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 子要素を横方向や縦方向に自由に配置できる。この場合は下のflex-directionで縦方向に指定している */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 子要素を縦方向に並べる */
  gap: 27px; /* 要素間の間隔を27pxに設定 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 子要素を水平方向の中央に配置 */
}
.heading::after {
  /* 下線装飾用の疑似要素。疑似要素とは、要素の前後に内容を追加できる特殊な要素で、CSSで装飾を加えるために使用される */
  content: ""; /* 下線を表示するための必須のプロパティ。空の文字列を指定することで、装飾用の要素として機能する */
  width: 60px; /* 下線の幅を60pxに設定 */
  height: 1px; /* 下線の高さを1pxに設定 */
  background: #3ea1d1; /* 下線の色をメインカラーに設定 */
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

/* Button（共通） */
.button {
  display: inline-block; /* インラインブロック要素は、インライン要素とブロック要素の特徴を併せ持つ要素です。横並びになる特徴(インライン)と、幅や高さ、余白の設定が可能な特徴(ブロック)の両方を持ちます */
  min-width: 158px;
  padding: 11px;
  text-align: center;
  border: 1px solid #3ea1d1;
  background: #fff;
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.02em;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #3ea1d1;
  color: #fff;
}

/* Header */
.header {
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a img {
  width: 120px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

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

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1), .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background-color: #3ea1d1;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

.header__nav {
  background-color: #3ea1d1;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -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: 47px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #333333;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #3ea1d1;
  }
}

/* Main */
.main {
  /*display: gridは要素をグリッドレイアウトとして配置することを指定します。
  この場合、.mainの子要素を縦方向に一列で配置し、
  gap: 96pxで指定された間隔で区切られます。*/
  display: grid;
  gap: 96px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 160px;
  }
}

/* FV */
.fv__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv__image {
    max-width: 990px;
    margin-left: auto;
    display: block;
  }
}
.fv__message {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__message {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 80px 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #fff;
  }
}

.fv__title {
  font-size: 26px;
  font-weight: 600;
}
.fv__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title br {
    display: inline;
  }
}

.fv__text {
  margin-top: 16px;
}

/* Concept */
.concept__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .concept__content {
    -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: 6.6666666667%; /* タイトルの改行がおかしくなるため。ギャップが広すぎるので、割合でサイズを調整する。 */
  }
}

.concept__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__image {
    width: 50%; /* 親要素の幅に対して常に50%の比率を保つ。直接600pxと指定すると親要素が1200px以外の時にレイアウトが崩れる可能性がある */
    -ms-flex-negative: 0;
        flex-shrink: 0; /* 要素が縮小されるのを防ぎ、指定したサイズを維持する */
  }
}
.concept__image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .concept__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 要素が余白スペースを埋めるように伸長する。この場合、concept__imageの横幅が固定されているため、concept__messageが残りのスペースを埋めるように伸びる */
  }
}

.concept__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept__title {
    font-size: 18px; /* mdサイズ(768px)以上で18pxに設定。改行がおかしくなるため。 */
  }
}
@media screen and (min-width: 900px) {
  .concept__title {
    font-size: 20px; /* lgサイズ(900px)以上で20pxに設定。幅が大きければ元のサイズに戻す。 */
  }
}

.concept__text {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-top: 40px;
  }
}

/* Feature */
.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;
}
@media screen and (min-width: 768px) {
  .feature__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px; /* カードが細くなるため、ギャップを調整 */
  }
}
@media screen and (min-width: 900px) {
  .feature__cards {
    gap: 60px; /* 画面幅が広がりカードの幅が増えるため、ギャップを広げる */
  }
}
@media screen and (min-width: 1200px) {
  .feature__cards {
    gap: 90px; /* さらに画面幅が広がるため、カード間のギャップを最大に */
  }
}

@media screen and (min-width: 768px) {
  .feature__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.feature-card {
  background: #fff;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}

.feature-card__image {
  text-align: center;
}
.feature-card__image img {
  width: 100%;
}

.feature-card__body {
  font-weight: 600;
  text-align: center;
  padding: 26px;
}

/* About */
.about {
  background: url(../img/SP/about-bg.png) no-repeat top center/cover;
  /* no-repeat: 背景画像を繰り返し表示しない、top center: 上部中央に配置、cover: 要素の幅/高さに合わせて画像を拡大縮小して表示 */
  position: relative;
  padding-block: 180px 50px;
  /* padding-blockは上下のパディングを一括指定できる論理プロパティ。padding-top/bottomより直感的で、writing-modeが変更されても正しく適用される */
  /* writing-modeは、テキストの書字方向を指定するプロパティ。horizontal-tb（横書き）、vertical-rl（縦書き右から左）、vertical-lr（縦書き左から右）などの値があり、日本語のような縦書きレイアウトにも対応できる */
}
@media screen and (min-width: 768px) {
  .about {
    background: url(../img/about-bg.png) no-repeat top center/cover;
    padding-block: 123px 122px;
  }
}
.about::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.about__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 50%;
  }
}

.about__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 22px;
  }
}

.about__text {
  margin-top: 23px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}

/* Products */
.products__inner {
  padding-inline: 56px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    max-width: 1020px; /* コンテンツ幅940pxに左右のパディング40px×2を加えた値を最大幅として設定 */
    padding-inline: 40px; /* 左右のパディングを40pxに設定 */
  }
}

.products__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: 41px;
}
@media screen and (min-width: 768px) {
  .products__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 900px) {
  .products__cards {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .products__card:hover .products-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* ホバー時に画像を1.1倍に拡大するトランスフォーム効果を適用します */
  }
}

@media screen and (min-width: 768px) {
  .products-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; /* flex: 1は、flex-grow: 1の省略記法です。これにより、カードが利用可能なスペースを均等に分配し、
同じ幅で表示されます。つまり、コンテナ内の余白スペースを各カードが均等に分け合います。 */
  }
}

.products-card__image {
  text-align: center; /* 画像を中央寄せにすることで、レスポンシブ対応時も常に中央に配置されます */
}
.products-card__image img {
  width: 100%; /* 画像の幅を親要素に合わせることで、レスポンシブ対応時も適切なサイズで表示されます */
}
@media screen and (min-width: 768px) {
  .products-card__image {
    overflow: hidden; /* 画像のホバーエフェクトでscale(1.1)により拡大される際に、親要素からはみ出た部分を隠すために必要です */
  }
  .products-card__image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s; /* ホバーエフェクトのtransitionプロパティは、状態変化の前から設定しておく必要があります。
 ホバー時のスタイルの中に書くと、ホバーを外した時のアニメーションが効かなくなってしまいます。
 そのため、通常状態のimgにtransitionを設定し、ホバー時にtransformを変更することで、
 ホバー時とホバーを外した時の両方でスムーズなアニメーションを実現できます。 */
  }
}

.products-card__body {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .products-card__body {
    margin-top: 18px;
  }
}

.products-card__title {
  font-size: 14px;
}

.products-card__price {
  color: #989898;
  font-size: 14px;
  margin-top: 10px;
}

.products__button {
  text-align: center;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .products__button {
    margin-top: 43px;
  }
}

/* News */
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1120px;
    padding-inline: 40px;
  }
}

.news__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: 27px;
}
@media screen and (min-width: 768px) {
  .news__cards {
    gap: 23px;
  }
}

.news__card {
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .news__card {
    padding-bottom: 23px;
  }
}

@media screen and (min-width: 768px) {
  .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* 子要素を上端に揃える */
    gap: 40px;
  }
}
.news-card:hover .news-card__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .news-card__image {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
  }
}
.news-card__image img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.news-card__body {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news-card__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.news-card__time {
  font-size: 14px;
  display: block;
}

.news-card__title {
  font-weight: 600;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news-card__text {
  margin-top: 14px;
  color: #888;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .news-card__text {
    margin-top: 10px;
  }
}

.news__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 44px;
  }
}

/* Concept2 */
.concept2__inner {
  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;
}
@media screen and (min-width: 768px) {
  .concept2__inner {
    -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: 40px;
  }
}
@media screen and (min-width: 900px) {
  .concept2__inner {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .concept2__inner {
    gap: 80px;
  }
}

.concept2__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept2__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept2__image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .concept2__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept2__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept2__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .concept2__title {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .concept2__title {
    font-size: 28px;
  }
}

.concept2__text {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .concept2__text {
    margin-top: 36px;
    font-size: 16px;
  }
}

/* Contact */
.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;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__head {
  color: #3ea1d1;
}

.contact__text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.contact__text .is-required {
  color: #e7728e;
}

.contact__items {
  margin-top: 28px;
  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;
}
@media screen and (min-width: 768px) {
  .contact__items {
    margin-top: 19px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: rgba(62, 161, 209, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 4px;
    padding-inline: 4px;
    -webkit-clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form-label__required {
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-label__required {
    font-size: 12px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
}
.form-text:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-radio {
  position: relative;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #3ea1d1;
  color: #fff;
}
.form-radio__input:focus + .form-radio__text {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
}

.form-radio__text {
  font-size: 16px;
  letter-spacing: 0.026px;
  color: #3ea1d1;
  border-bottom: 1px solid #fff;
  background: #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
  resize: vertical;
  font-size: 16px;
  border: 0;
}
.form-textarea:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}

.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 0px rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
}
.form-checkbox__text a {
  text-decoration: underline;
  color: #3ea1d1;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #3ea1d1;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/icon.png) no-repeat center center/contain;
}

/* Footer */
.footer {
  padding-block: 40px 7px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer__logo a img {
  width: 120px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo a img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__logo a img:hover {
    opacity: 0.6;
  }
}

.footer__menu-items {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__menu-items {
    -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: 32px;
  }
}

.footer__menu-item {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .footer__menu-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

.footer__sns-items {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__sns-items {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .footer__sns-link img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__sns-link img:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  font-size: 12px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}
.footer__copyright small {
  color: #888;
  font-size: inherit; /* 親要素のfont-sizeを継承する */
}