@charset "UTF-8";

html,
body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:'kosugi maru', sans-serif;
  letter-spacing: 0.05em; /* 文字間を少し広げる */
font-style: normal;
font-weight: 400;
  background-color: #ad003a;

}

body,
h1,
h2,
h3,
ul,
li,
a,
p {
  color: #484848;
  list-style: none;
  text-decoration: none;
}

/* ボタン関連共通CSS */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* 文字エフェクト */
.t-yellow {
  background: linear-gradient(transparent 60%, #FFF799 60%);
}

.t-red {
  background: linear-gradient(transparent 60%, #f76d8e 60%);
}

.t-big01 {
  font-size: 52px
}

.t-big02 {
  font-size: 27px
}

.t-strong {
  font-size: 40px
}

.t-strong02 {
  font-size: 30px
}

.t-small {
  font-size: 12px
}

.t-small02 {
  font-size: 20px
}

.t-small03 {
  font-size: 15px;
}

.t-small04 {
  font-size: 20px;
}

.t-small05  {font-size: 14px;
            line-height: normal;}

/**** ヘッダー ****/
.header {
  width: 100%;
  background-color: #ad003a;
  display: grid;
  grid-template-columns: 2fr 3fr;

}

.kaisyamei {
  margin: 3rem 3rem 2rem;
}

.kaisyamei a {
  font-size: 20px;
  color: #fff;
  align-items: center;
}

.header-wrapp {
  padding: 10px;
  margin: 2rem 2rem 2rem 0;
  text-align: center;
  display: flex;
  justify-content: left;
}

.membership a {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 40px;
  margin: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #ad003a;
}

.membership a:hover {
  background-color: #820032;
  color: #fff;
}

.login a {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  margin: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #ad003a;
}

.login a:hover {
  background-color: #820032;
  color: #fff;
}

/**** ナビゲーションメニュー ****/
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100vw;
  position: fixed;
  z-index: 2;
  bottom: 0;
  background-color: #820032;
}

.menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: 1px solid #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.menu a:hover {
  background-color: #ad003a;
}

/* 戻るボタン */
html {
  scroll-behavior: smooth;
}

.pagetop {
  height: 80px;
  width: 80px;
  position: fixed;
  right: 30px;
  bottom: 80px;
  background: #fff;
  border: solid 2px #820032;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #820032;
  border-right: 3px solid #820032;
  transform: translateY(20%) rotate(-45deg);
}



/* トップイラスト */
.header-pc {
  width: 100%;
}

.header-sp {
  display: none;
}
/* 公的医療制度 */
.btn-kouteki a {
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 500px;
    padding: 50px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    background: rgb(255,117,200);
    background: linear-gradient(270deg, rgba(255,117,200,1) 0%, rgb(255, 85, 187) 100%);
}
.btn-kouteki a:hover {
    background: rgb(255, 117, 200);
    background: linear-gradient(270deg, rgb(255, 35, 167) 0%, rgb(255, 85, 187) 100%);
}


/* お申込ボタン */
.simulation   {margin-bottom: 100px;
              margin-top: 100px;}
.simulation a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 40px 25px;
    background: #f3be00;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-size: 26px;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 5px 0px #a38106, 0 10px 20px #a38106;
}
.simulation a:hover{
  background:#FF2F2F;
  box-shadow: 0 5px 0px #B73434,0 7px 30px #FF2F2F;
}

.simulation a:active{
  background:#FF8282;
  box-shadow: 0 0px 10px #FF8282;
  box-shadow: 0 5px 0px #CC6262,0 4px 10px #FF8282;
}

/* 見出し */
h2 {
  margin-top: 80px;
  margin-bottom: 0;
  padding: 40px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff83cb), to(lch(57.81% 75.53 16.79)));
  background-image: -webkit-linear-gradient(left, #ff83cb 0%, #fe4069 100%);
  background-image: linear-gradient(to right, #ff83cb 0%, #fe4069 100%);
}


/* プラン表 */

.table-p {display: none;}

.plan-all {margin: 50px;
          padding: 20px;
          background-color: rgb(255, 255, 255, 0.5);
        text-align: center;}
.table-scroll {
  overflow-x: auto;
}
.table_design10 {
  border-collapse: collapse;
  min-width: 1300px;
  font-weight: bold;
  margin: 20px auto;
  background-color: #ffc6ea;
}
.table_design10 th, .table_design10 td {
  padding: 20px;
  border: 2px solid #fff;}

.table_design10 th {
  background: #f96ea7;
  color: #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  
}
.table_design10 th:last-of-type {
  border-right: 2px solid #fff;
}

.td-small {font-size: 13px;}

/* プランの特徴 */
.box-tokucho {
    margin: 20px 6px;
    background: #ffc6ea;
    border: 2px solid #fff;
}
.box-tokucho .box-title {
    font-size: 26px;
    background: #f96ea7;
    padding: 20px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #fff;
}
.box-tokucho p {
    padding: 0;
    margin: 20px;
    font-size: 20px;
    text-align: left;
    text-indent: -2em;
    padding-left: 2em;

}

/* 保険の補足 */
.hoken-massage  {text-align: left;} 

/**** Q-A ****/
.q-a {margin: 50px;
          padding: 20px;
          padding-bottom: 100px;
          background-color: rgb(255, 255, 255, 0.5);}

.accordion {
  width: 100%;
}

/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
  display: block;
  padding: 20px;
  background: #fe4069;
  color: #fff;
  cursor: pointer;
  margin: 10px 20px;
  position: relative;
}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 30px;
}



/**** お問い合わせ ****/
.otoiawase {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 5rem;
}

.otoiawase img {
  width: 35%;
  margin-top: 3rem;
}

.button-panf a {
  margin-top: 20px;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 600px;
    padding: 30px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: rgb(149,202,252);
    background: linear-gradient(270deg, rgb(255, 221, 71) 0%, rgb(255, 132, 60) 100%);
}
.button-panf a:hover {
    background: rgb(117,188,255);
    background: linear-gradient(270deg, rgb(255, 179, 16) 0%, rgb(255, 73, 37) 100%);
}

.otoiawase p {
  margin: 3rem 0;
  padding: 0;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}

/**** フッター ****/
.copyright {
  width: 100%;
  background-color: #ad003a;
  text-align: center;
  margin: 0;
  padding: 0.3rem 0 6rem;
}

.copyright p {
  padding: 10px;
  color: #fff;
  font-size: 14px;
}
/* ########################### 1380px以下 ##############################*/
@media (max-width: 1380px) {

.table-p {
    display: block;
    text-align: left;
    font-size: 20px;
  }

  /**** ヘッダー ****/


.kaisyamei {
  margin: 3rem 2rem 2rem;
}



}

/* ########################### 1100px以下 ##############################*/
@media (max-width: 1100px) {

 /**** ヘッダー ****/
.header {
  width: 100%;
  background-color: #ad003a;
  display: grid;
  grid-template-columns: 2fr 3fr;

}

.kaisyamei {
  margin: 3rem 1rem 2rem;
}

.kaisyamei a {
  font-size: 20px;
  color: #fff;
  align-items: center;
}

.header-wrapp {
  padding: 10px;
  margin: 2rem 2rem 2rem 0;
  text-align: center;
  display: flex;
  justify-content: left;
}

.membership a {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 40px;
  margin: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #ad003a;
}

.membership a:hover {
  background-color: #820032;
  color: #fff;
}

.login a {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  margin: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #ad003a;
}

.login a:hover {
  background-color: #820032;
  color: #fff;
}


}

/* #################### 960px以下 ##############################*/
@media (max-width: 960px) {
/**** ヘッダー ****/
.header {
  width: 100%;
  background-color: #ad003a;
  display: grid;
  grid-template-columns: 3fr 4fr;

}

.kaisyamei {
  margin: 3rem 1rem 2rem;
}

.kaisyamei a {
  font-size: 15px;
  color: #fff;
  align-items: center;
}

.header-wrapp {
  padding: 10px;
  margin: 2rem 2rem 2rem 0;
  text-align: center;
  display: flex;
  justify-content: left;
}

.membership a {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 40px;
  margin: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #ad003a;
}

.membership a:hover {
  background-color: #820032;
  color: #fff;
}

.login a {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  margin: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #ad003a;
}

.login a:hover {
  background-color: #820032;
  color: #fff;
}

}

/* #################### 820px以下 ##############################*/
@media (max-width: 820px) {
 
  /**** ナビゲーションメニュー ****/
  .menu {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 0;
  }

  .menu a {
    padding: 10px 15px;
    border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  }


  /* TOP戻るボタン */
  .pagetop {
    height: 65px;
    width: 65px;
    bottom: 140px;
  }

  /* フッター */
  .copyright {
    padding: 0.3rem 0 11rem;
  }


}
/* #################### 768px以下 ##############################*/
@media (max-width: 768px) {
/* トップイラスト */
  .header-pc {
    display: none;
  }

  .header-sp {
    display: block;
    width: 100%;
  }

 /* ヘッダー */
.header {
    display: grid;
    grid-template-columns: 1fr;
    height: 8rem;
  }

  .kaisyamei {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
  }

  .header-wrapp {
    padding: 10px 10px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  
  .membership a,
  .login a {
    font-size: 18px;
    margin: 0 1rem 0 0;
    padding:  8px 16px;
  }



}
/* #################### 640px以下 ##############################*/
@media (max-width: 640px) {
/* 公的医療制度 */
.btn-kouteki a {
    margin: 0 auto;
    max-width: 400px;
    padding: 50px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-size: 20px;}

/* お申込ボタン */
.simulation   {margin-bottom: 100px;
              margin-top: 100px;}
.simulation a {
    margin: 0 auto;
    max-width: 450px;
    padding: 40px 25px;
    background: #f3be00;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-size: 20px;
    font-weight: 600;}

/* 見出し */    
h2 {
  margin-top: 80px;
  margin-bottom: 0;
  padding: 40px;
  color: #fff;
  font-size: 30px;}

/* プラン */
.plan-all  {margin: 5px;
          padding: 10px;}

/* プラン表 */
.table_design10 th, .table_design10 td {
  padding: 10px;
  border: 2px solid #fff;}

/* プランの特徴 */

.box-tokucho .box-title {
    font-size: 20px;
    background: #f96ea7;
    padding: 20px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #fff;
}
.box-tokucho p {
    padding: 0;
    margin: 20px;
    font-size: 18px;
    text-align: left;
    text-indent: -2em;
    padding-left: 2em;

}

/**** Q-A ****/
.q-a {margin: 50px 5px;
          padding: 10px;
          padding-bottom: 100px;
          background-color: rgb(255, 255, 255, 0.5);}

/* お問い合わせ */
  .logo img {
    width: 80%;
  }

 
  .otoiawase p {
    font-size: 21px;
    margin: 2rem 0;
  }

  .t-strong {
    font-size: 24px;
  }

.button-panf  {margin: 20px;}

}

/* #################### 440px以下 ##############################*/
@media (max-width: 440px) {
  /* 公的医療制度 */
.btn-kouteki a {
    margin: 0 auto;
    max-width: 330px;
    padding: 50px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-size: 20px;}

/* お申込ボタン */
.simulation   {margin-bottom: 50px;
              margin-top: 50px;}
.simulation a {
    margin: 0 auto;
    max-width: 330px;
    padding: 20px 10;
    background: #f3be00;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 600;}

  .t-strong {
    font-size: 24px;
  }

  /* フッター */
  .copyright {
    padding: 0.1rem 0 13rem;
  }
}