@charset "utf-8";
html {
  scroll-behavior: smooth;
}
body {
  font-size: 18px;
  font-family: "游ゴシック", "YuGothic", "Noto Sans CJK JP", "Segoe UI", "Roboto", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 'Noto Sans JP', "Droid Sans", "ＭＳ Ｐゴシック", "Verdana", sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
    background: #e7efff;
  color: #333333;
}
/*-----------------------------------------トップボタン*/
#backtop {
  width: 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
/*----------------*/
/*------------------------------トップボタン*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  #backtop {
    width: 3vw;
    bottom: 5vw;
    right: 1vw;
    z-index: 99999;
  }
}
/*--------------*/
/*-----------------------------------------固定CVボタン*/
#cv_fix {
  width: 80px;
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 99999;
}
/*----------------*/
/*------------------------------固定CVボタン*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #cv_fix {
    width: 75px;
    top: inherit;
    bottom: 200px;
  }
}
/*----------------*/
/*------------------------------固定CVボタン*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  #cv_fix {
    width: 100vw;
    top: inherit;
    bottom: 0;
    right: 0;
    z-index: 99999;
  }
}
/*--------------*/
/*------------------------------パンくずリストPC*/
#breadcrumb {
  background: none;
  padding: 10px 20px;
}
#breadcrumb li {
  display: inline;
}
#breadcrumb li:after {
  content: '>';
  padding: 0 10px;
  color: #333;
  vertical-align: middle;
}
#breadcrumb li:last-child:after {
  content: '';
}
#breadcrumb li a {
  font-size: .6em;
  text-decoration: none;
  color: #333;
}
#breadcrumb li a:hover {
  text-decoration: underline;
}
/*--------------*/
/*------------------------------パンくずリスト*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  #breadcrumb {
    background: #fff;
    padding:3vw 5vw 0;
  }
  #breadcrumb li:after {
    content: '>';
    padding: 0 1vw;
  }
  #breadcrumb li a {
    font-size: 2.5vw;
  }
}
/*--------------*/






/*------------------------------メニューPC*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 14px 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-glass {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 40px 15px 20px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

#header .logo img {
  width: 150px;
}

#contents .logo img {
    display: none;
  }

.global-nav ul {
  display: flex;
  align-items: center;
  gap:0 34px;
}

.global-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #21336a;
    font-weight: 600;
    text-decoration: none;
  font-size: .9rem;
  white-space: nowrap;
}

.global-nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ac89d;
  flex-shrink: 0;
}

.global-nav a:hover {
  opacity: 0.7;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-btn {
  width: 270px;
  transition: 0.3s;
    object-fit: cover;
}

.header-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   タブレット・スマホ用ハンバーガーメニュー
========================= */

.hamburger-btn,
.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  #header {
    padding: 0 20px;
  }

  .header-inner {
    gap: 20px 0;
  }

  .header-glass {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .header-glass.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }    
    
  .global-nav,
  .header-buttons {
    display: none;
  }

  #header .logo img {
    width: 180px;
  }
#contents .logo img {
    display: none;
  }
  .hamburger-btn {
    position: relative;
      top:20px;
      right:0;
    width: 58px;
    height: 58px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    background: rgba(255,255,255,.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
      0 8px 28px rgba(0,0,0,.10),
      inset 0 1px 0 rgba(255,255,255,.8);
    cursor: pointer;
    z-index: 10002;
    transition: .35s ease;
  }

  .hamburger-btn span {
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #21336a;
    transition:
      transform .35s ease,
      opacity .25s ease,
      width .35s ease;
  }

  .hamburger-btn span:nth-child(2) {
    width: 18px;
  }

  .hamburger-btn.is-open {
    background: rgba(91,82,131,.92);
  }

  .hamburger-btn.is-open span {
    background: #fff;
  }

  .hamburger-btn.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-btn.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    opacity: 0;
    background: rgba(20,30,70,.34);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
      opacity .35s ease,
      backdrop-filter .35s ease;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
    opacity: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-menu-panel {
    width: 400px;
    height: calc(100vh - 28px);
    margin: 14px;
    padding: 24px;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,248,255,.82));
    border: 1px solid rgba(255,255,255,.7);
    box-shadow:
      0 30px 90px rgba(25,40,90,.25),
      inset 0 1px 0 rgba(255,255,255,.9);
    transform: translateX(36px) scale(.98);
    opacity: 0;
    transition:
      transform .4s cubic-bezier(.16,1,.3,1),
      opacity .35s ease;
    overflow-y: auto;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-menu-close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #5b5283;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(35,55,104,.18);
  }

  .mobile-nav {
    margin: 42px 0 34px;
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    color: #21336a;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255,255,255,.62);
    box-shadow:
      0 8px 24px rgba(35,55,104,.08),
      inset 0 1px 0 rgba(255,255,255,.9);
    transition: .3s ease;
  }

    .mobile-nav a img{
        width: 30px;
        margin: 0 0 0 auto;
    }
  .mobile-nav a:hover {
    transform: translateX(4px);
    background: rgba(255,255,255,.86);
  }

  .mobile-menu-buttons {
    display: grid;
    gap: 14px;
  }

  .mobile-menu-btn {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
      0 12px 28px rgba(35,55,104,.18),
      inset 0 1px 0 rgba(255,255,255,.3);
    transition: .3s ease;
  }

  .mobile-menu-btn:hover {
    transform: translateY(-2px);
  }

  .mobile-menu-btn img {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
.header-inner {
  gap:0 0;
}
 
  #header {
    padding:1vw 3vw;
  }

    .header-glass {
  gap: 0;
  padding: 0 0;
} 
  #header .logo img {
    display: none;
  }
#contents .logo img {
    display: block;
    width: 30vw;
    padding: 8vw 0 0;
    margin: 0 35vw;
  }
  .hamburger-btn {
      top:1vw;
      right:0;
    width: 10vw;
    height: 10vw;
    gap: 6px;
  } 
    
  .hamburger-btn span {
    width: 5vw;
  }

  .hamburger-btn span:nth-child(2) {
    width: 4vw;
  }

    
  .hamburger-btn.is-open span:nth-child(1) {
    transform: translateY(2vw) rotate(45deg);
  }
  .hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-2vw) rotate(-45deg);
  }    
    
  .mobile-menu-panel {
    width: calc(100vw - 10vw);
    height: calc(90vh - 10vw);
    margin: 5vw;
    padding: 5vw;
    border-radius: 5vw;
  }

  .mobile-nav {
    margin: 5vw 0;
  }

    .mobile-nav a img{
        width: 5vw;
    }
  .mobile-nav a {
    padding: 4vw 5vw;
    font-size: 4vw;
  }
}

/*------------------------------全体の設定PCここから*/

main {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, #dfeaf8 0%, #e7efff 30%, #ffffff 100%);
}

section {
  width: 100%;
  margin: 0 auto;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
}
div, p {
  line-height: 1.8em;
  text-align: justify;
  text-justify: inter-ideograph;
}
h1, h2, h3, h4 {
  line-height: 1.6em;
}
.blue-bg{
    background: #e7efff;
}
.purple-bg{
    background: #f5f6ff;
}
.green{
    color: #00c89b;
}
.h2-title{
    color: #21336a;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 10px;
}

.h2-sub{
    color: #21336a;
    font-size: .7rem;
    text-align: center;
}

.flex {
  display: flex;
}
.small-txt {
  line-height: 1.5em;
  font-size: .7em;
}
.important{
    color: #f15a24;
}
.mgt50 {
  margin: 50px auto 0;
}
.mgt20 {
  margin: 20px auto 0;
}
.mgb20 {
  margin: 0 auto 20px;
}
.hover {
  transition: .5s;
}
.hover:hover {
  transform: scale(1.05);
  opacity: .8;
}
.sp_img {
  display: none;
}
/*--------------*/
/*------------------------------全体の設定*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  .wrap {
    width: 700px;
  }
    
.h2-title{
    font-size: 2rem;
}
 
}
/*--------------*/
/*------------------------------全体の設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  section {
    width: 100vw;
    margin: 0 auto;
  }
  .wrap {
    width: 90vw;
  }
  div, p {
    line-height: 1.7em;
    word-break: break-all;
  }
  p {
    font-size: 3.5vw;
  }
  h1, h2, h3, h4 {
    line-height: 1.8em;
  }
.h2-title{
    width: 86vw;
    font-size: 5.5vw;
    margin: 0 auto;
}

.h2-sub{
    font-size: 3vw;
}    
  .small-txt {
    line-height: 1.5em;
    margin: 2vw 0 0;
    font-size: 3vw;
  }
  .mgt50 {
    margin: 10vw auto 0;
  }
  .mgt20 {
    margin: 3vw auto 0;
  }
  .mgb20 {
    margin: 0 auto 5vw;
  }
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
}
/*--------------*/


/*------------------------------開閉ボックスの設定PC*/

.accordion_title {
  display: block;
  width: 100%;
  position: relative;
  cursor: pointer;
}

summary.accordion_title::-webkit-details-marker {
  display:none;
}

.accordion_title:after {
  content: "＋";
  line-height: 1;
  pointer-events: none;
}

.accordion::details-content {
  opacity: 0;
  block-size: 0;
  transition: .3s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
}

.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}

.accordion[open] .accordion_title:after {
  content: "－";
}


/*--------------*/

/* =========================
   緑の吹き出し
========================= */
.h2-bubble{
    line-height: 1.6;
    width: 1000px;
    background: linear-gradient(135deg,#69cba5 0%,#5cc39a 100%);
    color: #fff;
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    letter-spacing: .05em;
    padding: 70px 40px;
    margin: 0 auto 80px;
    position: relative;
}
.h2-bubble::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,0) 45%
        );
}
.h2-bubble::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-45px;
    transform:translateX(-50%);
    width:18px;
    height:60px;
    background:#64c69f;
    border-radius:0 0 30px 30px;
}
.h2-bubble span{
    display:block;
    margin-top:30px;
    font-size:.8rem;
    font-weight:400;
    line-height:1.8;
}
/*--------------*/

/*緑の吹き出し*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
/*緑の吹き出し*/
.h2-bubble{
    width: 600px;
    font-size: 1.8rem;
    border-radius: 20px;
    padding: 50px 20px;
    margin: 0 auto 80px;
}
.h2-bubble::after{
    bottom:-30px;
    width:10px;
    height:38px;
}
.h2-bubble span{
    margin-top:20px;
    font-size:.7rem;
}
}
/*--------------*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
/*緑の吹き出し*/
.h2-bubble{
    width:86vw;
    font-size: 4.5vw;
    border-radius: 3vw;
    padding: 8vw;
    margin: 0 auto 8vw;
}
.h2-bubble::after{
    bottom:-3vw;
    width:2vw;
    height:8vw;
    border-radius:0 0 3vw 3vw;
}
.h2-bubble span{
    margin-top:1vw;
    font-size:2.5vw;
    line-height:1.5;
}
}
/*--------------*/


/* =========================
   角丸イラストリスト
========================= */

/*法人利用のメリット*/
.benefits-list{
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    gap:50px;
    margin: 50px auto;
}
.benefits-list li{
    display: flex;
    align-items: center;
    width: 475px;
    background: #e7efff;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 60px;
    padding:10px 60px 10px 10px;
}
.benefits-list li img{
    width: 80px;
    margin: 0 20px 0 0;
    object-fit: contain;
}
/*--------------*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
/*法人利用のメリット*/
.benefits-list{
    width: 700px;
    gap:40px;
    margin: 50px auto;
}
.benefits-list li{
    width: 330px;
    font-size: 1.2rem;
}
.benefits-list li img{
    width: 60px;
    margin: 0 20px 0 0;
    object-fit: contain;
}
}

/*--------------*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
/*法人利用のメリット*/
.benefits-list{
    flex-direction: column;
    width: 86vw;
    gap:5vw;
    margin: 5vw auto;
}
.benefits-list li{
    width: 100%;
    line-height: 1.5rem;
    font-size: 4vw;
    border-radius: 13vw;
    padding:2vw 8vw 2vw 2vw;
}
.benefits-list li img{
    width: 12vw;
    margin: 0 3vw 0 0;
}
}
/*--------------*/




/* =========================
   まるごと健診チェッカー
========================= */
.recommended-kit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.recommended-kit .kit-headline{
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border:2px solid #21336a;
    padding:5px 50px;
}
.merit-ttl{
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 0;
}
.recommended-kit img{
    width: 400px;
}
/*--------------*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
.recommended-kit{
    flex-direction: column;
} 
}

/*--------------*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
.recommended-kit{
    flex-direction: column;
}
.recommended-kit .kit-headline{
    width: 86vw;
    font-size: 4vw;
    border:.2vw solid #21336a;
    padding:3vw;
    margin: 0 auto;
}
.merit-ttl{
    font-size: 6.5vw;
    margin: 4vw 0 0;
}
.recommended-kit img{
    width: 60vw;
}  
}
/*--------------*/

/* =========================
   二重線の枠
========================= */
.double-line{
    border:8px double #21336a;
    border-radius: 30px;
    padding: 50px;
    margin: 50px auto 0;
    position: relative;
}
.double-line .icon-arufa{
    width: 200px;
    position: absolute;
    top:-80px;
    left:20px;
}

.double-line h4{
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.double-line p{
    margin: 20px 0 30px;
}
/*--------------*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
.double-line .icon-arufa{
    width: 150px;
    position: absolute;
    top:-80px;
    left:10px;
}    
}

/*--------------*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
.double-line{
    width: 90vw;
    border:1vw double #21336a;
    border-radius: 3vw;
    padding:8vw 6vw;
    margin: 6vw auto 0;
}
.double-line .icon-arufa{
    width: 25vw;
    top:-10vw;
    left:2vw;
}

.double-line h4{
    font-size: 4.5vw;
}

.double-line p{
    margin: 3vw 0 5vw;
}    
}
/*--------------*/

/* =========================
   よくある質問
========================= */

#faq .accordion_title{
    display: flex;
    width: 700px;
    background: #e7efff;
    color: #21336a;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 18px 15px 15px 30px;
    margin: 50px auto 0;
}

#faq .accordion_title:after {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #21336a;
    color:#fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    margin: 0 0 0 auto;
}
#faq .accordion_contents{
    width: 645px;
    background: #F8F8F8;
    padding:20px 50px 50px;
    margin: 0 auto;
}
#faq .accordion_contents p{
    margin: 30px auto 0;
}
/*--------------*/


/*------------------------------スマホ*/
@media (max-width: 640px) {
#faq .accordion_title{
    width:76vw;
    font-size: 3.5vw;
    padding:3.5vw;
    margin: 5vw auto 0;
}

#faq .accordion_title:after {
    width: 7vw;
    height: 7vw;
    line-height:normal;
    font-size: 4vw;
    border-radius:1vw;
    vertical-align: middle;
}
    
    #faq .accordion_title p{
        width: 65vw;
    }    
    
#faq .accordion_contents{
    width: 73vw;
    padding:1vw 5vw 5vw;
    margin: 0 auto;
}
#faq .accordion_contents p{
    margin: 4vw auto 0;
}
}
/*--------------*/


/* =========================
   お問い合わせ
========================= */
#inquiry .flex{
    margin: 50px auto 0;
}
#inquiry .inquiry-txt{
    width: 380px;
}
#inquiry .inquiry-txt h3{
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 30px;
}
#inquiry .inquiry-txt .check{
    font-size:1.4rem;
    font-weight: 600;
    margin: 10px 0 0;
}
#inquiry .inquiry-txt .check img{
    width: 35px;
    vertical-align: middle;
    margin: 0 10px 0 0;
}
#inquiry .inquiry-form{
    width: 580px;
    background: #fff;
    border-radius: 30px;
    box-shadow:
    0 18px 36px rgba(25,40,90,.08),
    0 45px 95px rgba(35,55,104,.22),
    0 0 0 1px rgba(35,55,104,.08);
    padding: 40px;
    margin: 0 0 0 auto;
}
#inquiry .inquiry-form table{
    width: 100%;
}
#inquiry .inquiry-form td{
    width: 50%;
    padding:10px;
    font-size: 1.3rem;
    font-weight: 600;
}
#inquiry .inquiry-form td .required{
    color:red;
    font-size: .7rem;
    font-weight: 300;
}
#inquiry .inquiry-form td input,#inquiry .inquiry-form td select,#inquiry .inquiry-form td textarea{
    width: 100%;
    font-size: 1rem;
    border:1px solid #737373;
    border-radius: 5px;
    padding: 10px;
}
#inquiry .inquiry-form td textarea{
    height: 200px;
}
#inquiry .inquiry-form .required-txt{
    font-size: .8rem;
    text-align: center;
}
#inquiry .inquiry-form .submit-btn{
    width: 300px;
    margin: 30px 100px;
}
#inquiry .inquiry-form .form-tel{
    color:#5b5283;
    font-weight: 600;
    text-align: center;
}
#inquiry .inquiry-form .form-tel:nth-child(3){
    font-size: 1.4rem;
}

.submit-btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.submit-btn img {
  display: block;
  width: 100%;
}

.submit-btn:disabled {
  opacity: 0.35;
  filter: grayscale(40%);
  cursor: not-allowed;
}

.submit-btn:not(:disabled) {
  opacity: 1;
  filter: none;
}

.submit-btn:not(:disabled):hover {
  transform: translateY(-3px);
}


/* 個人情報同意チェック */
.privacy-txt{
    background: #F5F5F5;
    border-radius: 10px;
    padding: 20px 20px 5px;
}
.privacy-txt p{
    font-size: .9rem;
    margin: 0 0 15px;
}

.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  margin: 30px auto;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  accent-color: #00c89b;
  cursor: pointer;
}

.privacy-check span {
  font-weight: 600;
}

/* 未同意時 */
.submit-btn:disabled {
  opacity: 0.35;
  filter: grayscale(40%);
  cursor: not-allowed;
  pointer-events: none;
}

/* 同意後 */
.submit-btn:not(:disabled) {
  opacity: 1;
  filter: none;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:not(:disabled):hover {
  transform: translateY(-3px);
  opacity: 0.85;
}


/*--------------*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
#inquiry .flex{
    flex-direction: column;
}
#inquiry .inquiry-txt{
    width: 100%;
}
#inquiry .inquiry-txt h3{
    text-align: center;
}
#inquiry .inquiry-form{
    width: 100%;
    margin: 50px auto 0;
}
#inquiry .inquiry-form table{
    width: 100%;
}

#inquiry .inquiry-form td textarea{
    height: 200px;
}
#inquiry .inquiry-form .submit-btn{
    width: 60%;
    margin: 30px 20%;
}
}
/*--------------*/

/*------------------------------スマホ*/
@media (max-width: 640px) {
#inquiry .flex{
    flex-direction: column;
    margin: 5vw auto 0;
}
#inquiry .inquiry-txt{
    width: 80vw;
    margin: 0 auto;
}
#inquiry .inquiry-txt h3{
    font-size: 5.5vw;
    margin: 0 0 3vw;
}
#inquiry .inquiry-txt .check{
    font-size:4.5vw;
    margin: 3vw 0 0;
}
#inquiry .inquiry-txt .check img{
    width: 5vw;
    margin: 0 2vw 0 0;
}
#inquiry .inquiry-form{
    width: 86vw;
    border-radius: 5vw;
    padding: 5vw;
    margin: 8vw auto 0;
}
#inquiry .inquiry-form td{
    display: block;
    width: 100%;
    padding:2vw;
    font-size: 3.5vw;
}
#inquiry .inquiry-form td .required{
    font-size: 2.5vw;
}
#inquiry .inquiry-form td input,#inquiry .inquiry-form td select,#inquiry .inquiry-form td textarea{
    font-size: 3.5vw;
    border-radius: 1vw;
    padding: 2vw;
}
#inquiry .inquiry-form td textarea{
    height: 20vw;
}
#inquiry .inquiry-form .required-txt{
    font-size: 3vw;
    text-align: left;
}
#inquiry .inquiry-form .submit-btn{
    width: 66vw;
    margin: 5vw 5vw;
}
#inquiry .inquiry-form .form-tel{
    font-size: 3.5vw;
}
#inquiry .inquiry-form .form-tel:nth-child(3){
    font-size: 4.5vw;
}
    
/* 個人情報同意チェック */
.privacy-txt{
    border-radius: 2vw;
    padding: 5vw 5vw 1vw;
}
.privacy-txt p{
    font-size: 3vw;
    margin: 0 0 4vw;
}

.privacy-check {
  gap: 15px;
  cursor: pointer;
  margin: 30px auto;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  accent-color: #00c89b;
  cursor: pointer;
}

.privacy-check span {
  font-weight: 600;
}

/* 未同意時 */
.submit-btn:disabled {
  opacity: 0.35;
  filter: grayscale(40%);
  cursor: not-allowed;
  pointer-events: none;
}

/* 同意後 */
.submit-btn:not(:disabled) {
  opacity: 1;
  filter: none;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:not(:disabled):hover {
  transform: translateY(-3px);
  opacity: 0.85;
}    
    
}
/*--------------*/


/*------------------------------フッターPCここから*/
#footer {
  background: #21336a;
  padding: 50px 0;
}

#footer .foot_wrap {
  width: 1000px;
  padding: 50px 0;
  margin: 0 auto;
}
#footer .foot_btn-wrap{
    display: flex;
    justify-content: center;
    gap:100px;
}

#footer .foot-btn{
    width: 450px;
    height: 100px;
    line-height: 100px;
    background: #5b5283;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 70px;
    padding: 0 30px;
}
#footer .foot-btn a{
    display: flex;
    text-decoration: none;
    color:#fff;
}
#footer .foot-btn a img{
    width: 30px;
    margin: 0 0 0 auto;
    object-fit: contain;
}
#footer .foot-btn a .ill-footmenu{
    width: 60px;
    margin: 0 auto 0 0;
}

.foot-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  color: #fff;
    margin: 30px 0 0;
}
.foot-menu-wrap .foot-menu {
    width: 250px;
    margin: 40px 0 0 ;
}
.foot-menu-wrap .foot-menu a{
    text-decoration: none;
    color:#fff;
}
.foot-menu-wrap .foot-menu .foot-menu-ttl{
    font-weight: 600;
}


.foot-social{
    background: #f5f6ff;
    padding: 50px 0;
    margin: 0 auto;
}

.foot-logo {
  width: 250px;
    margin: 0 auto;
}
.add {
  font-size: .9rem;
  text-align: center;
  margin: 10px auto 20px;
}
.sns {
  display: flex;
    justify-content: center;
  gap: 0 10px;
}
.sns img {
  width: 60px;
  object-fit: contain;
}

.foot-info {
  width: 100%;
  background: #fff;
  padding: 50px 0 20px;
}
.registration-number {
  font-size: .7rem;
  text-align: center;
  margin: 0 auto;
}
.small_box {
  font-size: .5rem;
  text-align: center;
  padding: 30px 0 10px;
}
/*--------------*/
/*------------------------------フッター*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {

#footer .foot_wrap {
  width: 700px;
  padding: 50px 0;
}
#footer .foot_btn-wrap{
    gap:50px;
}

#footer .foot-btn{
    width: 450px;
    height: 80px;
    line-height: 80px;
    padding: 0 20px;
}
#footer .foot-btn a img{
    width: 25px;
}
#footer .foot-btn a .ill-footmenu{
    width: 50px;
}

.foot-menu-wrap .foot-menu {
    width: 200px;
    margin: 40px auto 0 ;
}

}
/*--------------*/
/*------------------------------フッター*/
/*----------------------------------------------スマホ*/
@media (max-width: 640px) {
 #footer {
  padding: 8vw 0;
}

#footer .foot_wrap {
  width: 90vw;
  padding: 5vw 0;
}
#footer .foot_btn-wrap{
    flex-direction: column;
    gap:5vw 0;
}

#footer .foot-btn{
    width: 90vw;
    height: 14vw;
    line-height: 14vw;
    font-size: 3.5vw;
    border-radius: 10vw;
    padding: 0 5vw 0 2vw;
    margin: 0 auto;
}
#footer .foot-btn a img{
    width:6vw;
    margin: 0 0 0 auto;
    object-fit: contain;
}
#footer .foot-btn a .ill-footmenu{
    width: 10vw;
    margin: 0 auto 0 0;
}

.foot-menu-wrap {
    display: block;
    margin: 10vw 0 0;
}
.foot-menu-wrap .foot-menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 3vw;
    gap:4vw;
    margin:2vw 0 0;
}
    .foot-menu-wrap .foot-menu li{
        width: 43vw;
        background: #e7efff;
        color: #21336a;
        font-weight: 600;
        border-radius: 2vw;
        padding:2vw 3vw ;
    }
    
.foot-menu-wrap .foot-menu li a{
    display: block;
    color: #21336a;
}    
    .foot-menu-wrap .foot-menu .foot-menu-ttl{
        width: 100%;
        background: none;
        color: #fff;
        font-size: 3.5vw;
        margin: 0 0 -4vw -3vw;
    }  
    
    .foot-menu-wrap .foot-menu .foot-menu-ttl a{
        color: #fff;
    }    
.foot-social{
    padding: 8vw 0;
}

.foot-logo {
  width: 50vw;
}
.add {
  font-size: 3vw;
  margin: 3vw auto;
}


.foot-info {
  padding: 5vw 0 2vw;
}
  
.sns {
    width: 80vw;
    gap: 0 4vw;
    margin: 5vw auto 0;
  }
.sns img {
    width: 15vw;
  }

 .registration-number {
    font-size: 2.5vw;
    padding: 3vw 0 0;
    margin: 0 auto;
  }
.small_box {
    font-size: 2vw;
    margin: 0 auto;
  }
}
/*--------------*/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

