@charset "UTF-8";
#main_ct {
  position: relative;
  --color1: rgb(235, 245, 255); /* 明るい水色（白に近い） */
  --color2: rgb(250, 250, 230); /* やや黄みを残したオフホワイト */
  --color3: rgb(71, 200, 251); /* 透明感のある青 */
  --color4: rgb(0, 42, 72); /* 深くて青みの強い濃色 */
  background-image: radial-gradient(circle at var(--spotX, 50%) var(--spotY, 0%), rgba(247, 255, 197, 0.6), transparent var(--spotSize, 20%)), linear-gradient(120deg, var(--color1), var(--color2) 20%, var(--color3), var(--color4));
  background-repeat: no-repeat;
  background-size: 100% 100%, 400% 400%;
  background-position: center center, 0% 50%;
  animation: floatBG 20s ease-in-out infinite;
  transition: background 1s ease;
}

@keyframes floatBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bubble {
  position: absolute;
  bottom: 0px;
  width: 10px;
  height: 10px;
  background: rgba(144, 212, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}
#main_ct_back {
  position: fixed;
  width: 100%;
  height: calc(100vh + 100px);
  background: url(../img/common/back.webp) center;
  background-size: 2157px 1192px;
  top: 0;
  z-index: 4;
}

#main_ct #main_ct_in {
  position: relative;
  z-index: 5;
  padding-bottom: 400px;
}

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

.ssp_only {
  display: none;
}

.slicknav_menu {
  display: block;
}

.tab_only {
  display: none;
}

html {
  font-size: 59%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: auto !important;
  overscroll-behavior: none;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #05203B;
  -webkit-text-size-adjust: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0 !important;
  visibility: visible;
  transition: opacity 2.5s ease-in-out;
  min-width: 300px;
}
body.fade-in {
  opacity: 1 !important;
}

.js-fadein, .js-fadein_l, .js-fadein_r {
  opacity: 0;
}

.maru_list li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
  margin: 4px 0;
}
.maru_list li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
  background: #04A1E9;
}

.cmn_ttl {
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cmn_ttl p {
  font-family: "Pacifico", cursive;
  font-size: 1.4rem;
}
.cmn_ttl h2 {
  font-size: 3.4rem;
  color: #fff;
}

.cmn_btn a {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 370px;
  height: 81px;
  background: rgba(255, 255, 255, 0.22);
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
  font-size: 2rem;
  border-radius: 45px;
  position: relative;
  padding-right: 40px;
  padding-left: 20px;
  box-sizing: border-box;
  transition: all 0.4s;
  line-height: 1.2;
}
.cmn_btn a .cmn_btn_wrap {
  display: inline-block;
  position: relative;
  padding-left: 55px;
}
.cmn_btn a .en {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.8;
  font-family: "Pacifico", cursive;
  display: block;
  text-align: center;
}
.cmn_btn a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 45px;
  position: absolute;
  left: 0;
  top: 0;
}
.cmn_btn a::after {
  display: block;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path id="多角形_5" data-name="多角形 5" d="M6.634,1.5a1,1,0,0,1,1.732,0l5.769,10a1,1,0,0,1-.866,1.5H1.731a1,1,0,0,1-.866-1.5Z" transform="translate(13) rotate(90)" fill="%23ffffff"/></svg>');
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
}
.cmn_btn a i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 38px;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
}

br {
  letter-spacing: 0;
}

.ls_0 {
  letter-spacing: 0;
}

.mt-1 {
  margin-top: 1em;
}

.ct_padding {
  padding: 40px 0;
}

*, *:before, *:after {
  box-sizing: inherit;
  outline: none;
}

.blue_txt {
  color: #04A1E9;
}

.red_txt {
  color: #EF3669;
}

.content {
  width: 94%;
  margin: 0 auto;
  max-width: 1200px;
}

#head_ct {
  height: 70px;
  background: #fff;
  position: relative;
  z-index: 99;
}

.head_l h1 {
  position: absolute;
  width: 260px;
  z-index: 3;
  left: 4%;
  top: 20px;
}

#home_kv {
  background: url("../img/home/kv/kv_back.webp") top;
  background-size: cover;
  clip-path: ellipse(220% 100% at 50% 0%);
  position: relative;
  z-index: 3;
}

#main_visual {
  position: relative;
  padding-top: 20px;
  margin-bottom: 5vw;
  z-index: 2;
}
#main_visual::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(335deg, rgba(255, 255, 255, 0) 35%, rgb(255, 255, 255) 100%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
}
#main_visual .kv {
  width: 92%;
  margin: 0 auto;
  height: 80vw;
  position: relative;
  z-index: 2;
}
#main_visual .kv .splide {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
#main_visual .kv .splide .splide__track, #main_visual .kv .splide .splide__slide, #main_visual .kv .splide .splide__slide .slide-media, #main_visual .kv .splide .splide__slide .slide-media img {
  height: 100%;
}
#main_visual .kv .splide .splide__slide .slide-media img {
  -o-object-fit: cover;
     object-fit: cover;
}
#main_visual .kv #kame_communication {
  position: absolute;
  width: 30vw;
  height: auto;
  right: -2%;
  bottom: -6vw;
}
#main_visual .kv #kame_communication a {
  display: block;
}
#main_visual .slide-info {
  width: 92%;
  margin: 10vw auto 0 auto;
  padding-bottom: 18vw;
  position: relative;
  z-index: 2;
}
#main_visual .slide-info .kv_text {
  margin-left: 2%;
}
#main_visual .slide-info .kv_text h1 {
  font-size: clamp(1.4rem, 7vw, 3.8rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#main_visual .slide-info .kv_text h1 span {
  color: #04A1E9;
}
#main_visual .slide-info .kv_text p {
  font-size: clamp(1rem, 3.5vw, 2rem);
  letter-spacing: 0.1em;
  margin-top: 2vw;
}
#main_visual .slide-info .kv_illust #kv_illust_l {
  width: 23vw;
  max-width: 215px;
  height: auto;
  position: absolute;
  left: -2%;
  bottom: -7vw;
}
#main_visual .slide-info .kv_illust #kv_illust_r {
  width: 18vw;
  max-width: 158px;
  height: auto;
  position: absolute;
  right: -2%;
  top: -2vw;
}
#main_visual .slide-info .en {
  font-family: "Pacifico", cursive;
  font-size: clamp(0.8rem, 2.5vw, 1.4rem);
  position: absolute;
  right: 0;
  bottom: 0;
}

#index_ct01 {
  position: relative;
  padding-top: 80px;
  margin-top: -80px;
}

.index_ct01_in .index_ct01_ttl {
  display: flex;
}
.index_ct01_in .index_ct01_ttl h2 {
  font-size: 3rem;
  line-height: 1.6;
}
.index_ct01_in .index_ct01_ttl h2 span {
  font-family: "Pacifico", cursive;
  color: #04A1E9;
  font-size: 1.4rem;
  margin-left: 1em;
}
.index_ct01_in .index_time_table {
  margin: 50px 0;
}
.index_ct01_in .time_table {
  width: 94%;
  margin: 20px auto;
  font-size: 1.5rem;
}
.index_ct01_in .time_table table {
  width: 100%;
}
.index_ct01_in .time_table table tr th {
  border-top: 1px solid #05203B;
  border-bottom: 1px solid #05203B;
  padding: 5px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
}
.index_ct01_in .time_table table tr th:first-child {
  text-align: left;
  border-right: 1px solid #05203B;
}
.index_ct01_in .time_table table tr td {
  border-bottom: 1px dashed #05203B;
  padding: 8px 0;
  text-align: center;
  font-size: 1.5rem;
  vertical-align: middle;
  position: relative;
}
.index_ct01_in .time_table table tr td:first-child {
  text-align: left;
  font-weight: bold;
  padding-left: 1%;
  border-right: 1px solid #05203B;
}
.index_ct01_in .time_table table tr td:first-child span {
  font-size: 1.6rem;
  margin-top: 2px;
  display: block;
}
.index_ct01_in .time_table table tr td img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(0.8) translate(-50%, -50%);
  width: 16px;
  height: auto;
}
.index_ct01_in .time_table table tr td.time {
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0;
}
.index_ct01_in .time_table table tr td.star img {
  width: 21px;
  height: auto;
}
.index_ct01_in .time_table table tr:last-of-type td {
  border-bottom: 1px solid #05203B;
}
.index_ct01_in .time_table .table_caption {
  margin-top: 10px;
}
.index_ct01_in .time_table .table_caption .cap p {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  margin-bottom: 5px;
}
.index_ct01_in .time_table .table_caption .cap p i {
  margin-right: 0.2em;
  line-height: 1;
  display: flex;
  align-items: center;
}
.index_ct01_in .time_table .table_caption .cap p i img {
  width: 22px;
  height: auto;
}
.index_ct01_in .time_table .table_caption .cap p i span {
  margin: 0 5px;
  position: relative;
  top: -0.2em;
}
.index_ct01_in .time_table .table_caption p {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.index_ct01_in .time_table .table_caption p i {
  margin-right: 0.2em;
  line-height: 1;
}
.index_ct01_in .time_table .table_caption dl {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
.index_ct01_in .time_table .table_caption dl dt {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  background: #EF3669;
  border-radius: 3px;
  width: 60px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.index_ct01_in .time_table .table_caption dl dd {
  flex: 1;
  margin-left: 5px;
  line-height: 1.4;
}

#news_in {
  margin: 20px auto 0 auto;
  width: 94%;
  position: relative;
}
#news_in #news_illust_fusen {
  position: absolute;
  z-index: 99;
  width: 60px;
  height: auto;
  bottom: -20px;
  right: -2%;
  z-index: -1;
}

#news_wrap {
  width: 100%;
  /*height:440px;*/ /*お知らせ量が増えたら拡大*/
  max-height: 340px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

ul#news_list {
  padding: 0;
}

li.oneitem {
  position: relative;
  line-height: 1.1em;
  border-bottom: 1px dashed #05203B;
}
li.oneitem:first-child {
  border-top: 1px dashed #05203B;
}

ul#news_list {
  padding: 0;
  margin: 0 auto;
}

li.oneitem {
  position: relative;
  line-height: 1.1em;
  letter-spacing: 0.02em;
}

li.oneitem .news_item {
  display: block;
  padding: 12px 7% 10px 0;
  width: 93%;
}

li.oneitem a {
  position: relative;
  display: block;
  width: 100%;
}
li.oneitem a.link_ttl::after {
  display: block;
  content: "";
  background: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  background-size: contain;
  position: absolute;
  right: 6px;
  top: 50%;
  margin-top: -7px;
}
li.oneitem a .news_List_Title {
  text-decoration: underline;
}

dt.news_day {
  line-height: 1em;
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #05203B;
}

dd.news_List_Title {
  color: #05203B;
  margin: 6px 0 6px 0;
  font-size: 1.55rem;
  line-height: 1.7em;
  font-weight: bold;
}

.detailText {
  line-height: 1.8;
  color: #05203B;
  margin-top: 6px;
}
.detailText i {
  font-style: italic;
}
.detailText ul li {
  list-style-type: disc;
}
.detailText ol li {
  list-style-type: decimal;
}
.detailText ol, .detailText ul {
  padding-left: 1em;
}

.detailText a {
  text-decoration: underline;
  font-weight: bold;
  color: #04A1E9;
  display: inline !important;
}
.detailText a:hover {
  background: none !important;
}

.detailText a::after {
  display: none;
}

.detailText a:hover {
  color: #FF8B00;
}

dt.news_day span#category {
  margin-left: 10px;
}

dt.news_day span#category img {
  width: 70px;
  height: auto;
  max-width: 80px;
}

#index_ct02 {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
#index_ct02 #penguin_illust {
  position: absolute;
  width: 190px;
  top: 60px;
  left: -20px;
  z-index: -1;
}
#index_ct02 #fish_school_left {
  width: 300px;
  height: auto;
  position: absolute;
  top: -100px;
  left: -20px;
}
#index_ct02 #fish_school_right {
  width: 300px;
  height: auto;
  position: absolute;
  bottom: -80px;
  right: -20px;
}
#index_ct02 .splide {
  margin-top: 30px;
}
#index_ct02 .splide__list .splide__slide {
  position: relative;
}
#index_ct02 .splide__list .splide__slide .link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}
#index_ct02 .splide__list .splide__slide p {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30%;
  text-align: center;
  font-size: clamp(1.8rem, 5.5vw, 2.4rem);
  line-height: 1.2;
  left: 50%;
  bottom: 6%;
  transform: translate(-50%, 0);
  z-index: 2;
}
#index_ct02 .splide__list .splide__slide picture {
  display: block;
  animation: bubblePulse 6s ease-in-out infinite;
}
#index_ct02 .splide__arrows .splide__arrow {
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: none;
  position: absolute;
  bottom: -20px;
  z-index: 99;
}
#index_ct02 .splide__arrows .splide__arrow.splide__arrow--prev {
  left: 6%;
}
#index_ct02 .splide__arrows .splide__arrow.splide__arrow--next {
  right: 6%;
}
#index_ct02 .splide__pagination {
  margin-top: 40px;
}
#index_ct02 .splide__pagination li {
  margin: 0 5px;
  width: 8px;
  height: 8px;
  position: relative;
}
#index_ct02 .splide__pagination li button {
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.3;
}
#index_ct02 .splide__pagination li button.is-active {
  opacity: 1;
}

#index_ct03 .index_lead {
  background: rgba(255, 255, 255, 0.9);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  position: relative;
}
#index_ct03 .index_lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/common/back.webp) center no-repeat;
  background-size: cover;
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  z-index: 2;
}
#index_ct03 .index_lead .index_lead_in {
  width: 92%;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 150px 0 170px 0;
}
#index_ct03 .index_lead .index_lead_in h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #04A1E9;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
#index_ct03 .index_lead .index_lead_in h2 .en {
  font-family: "Pacifico", cursive;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 15px;
}
#index_ct03 .index_lead .index_lead_in p {
  position: relative;
  z-index: 3;
}
#index_ct03 .photo_slide {
  position: relative;
  margin-top: -40px;
  z-index: 4;
}
#index_ct03 .photo_slide .splide__slide {
  margin: 0 10px;
  width: 60vw !important;
}
#index_ct03 .photo_slide .splide__slide img {
  border-radius: 10px;
}
#index_ct03 .index_lead_illust #index_lead_illust_l {
  width: 100px;
  position: absolute;
  left: -2%;
  top: 40px;
  z-index: -1;
}
#index_ct03 .index_lead_illust #index_lead_illust_r {
  width: 110px;
  position: absolute;
  right: -2%;
  bottom: 80px;
  z-index: -1;
}

.index_photo_btn .cmn_btn {
  width: 90%;
  margin: 60px auto 40px auto;
  position: relative;
  z-index: 10;
}

.foot_cmn_illust_front {
  width: 200%;
  height: 500px;
  background: url(../img/common/deep_sea_back.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: -20%;
  margin-top: 30px;
  pointer-events: none;
}
.foot_cmn_illust_front #deep_sea_fish {
  width: 120px;
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin-left: -280px;
}

.foot_cmn_illust {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
}
.foot_cmn_illust #deep_sea_left {
  width: 250px;
  position: absolute;
  left: 50%;
  margin-left: -250px;
  top: 40px;
}
.foot_cmn_illust #deep_sea_right {
  width: 300px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  top: 100px;
}

footer {
  position: relative;
  z-index: 10;
  background: #F6FAFB;
}

#foot_wrap #foot_ct01 {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_logo {
  width: 92%;
  margin: 0px auto;
  text-align: center;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info {
  width: 92%;
  margin: 20px auto;
  font-size: 1.5rem;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info p {
  line-height: 1.8;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info .denwa {
  margin-bottom: 10px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info .denwa a {
  color: #05203B;
  font-size: 3.4rem;
  position: relative;
  padding-left: 42px;
  line-height: 1;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info .denwa a i {
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: 3px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info ul {
  margin-top: 10px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info ul li {
  position: relative;
  padding-left: 25px;
  margin: 8px 0;
  line-height: 1.8;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info ul li i {
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.4em;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table {
  font-size: 1.5rem;
  width: 92%;
  margin: 0 auto;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table {
  width: 100%;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr th {
  border-top: 1px solid #05203B;
  border-bottom: 1px solid #05203B;
  padding: 5px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr th:first-child {
  text-align: left;
  border-right: 1px solid #05203B;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td {
  border-bottom: 1px dashed #05203B;
  padding: 8px 0;
  text-align: center;
  font-size: 1.5rem;
  vertical-align: middle;
  position: relative;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td:first-child {
  text-align: left;
  font-weight: bold;
  padding-left: 1%;
  border-right: 1px solid #05203B;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td:first-child span {
  font-size: 1.6rem;
  margin-top: 2px;
  display: block;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(0.8) translate(-50%, -50%);
  width: 16px;
  height: auto;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td.time {
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td.star img {
  width: 21px;
  height: auto;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr:last-of-type td {
  border-bottom: 1px solid #05203B;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption {
  margin-top: 10px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .cap p {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  margin-bottom: 5px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .cap p i {
  margin-right: 0.2em;
  line-height: 1;
  display: flex;
  align-items: center;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .cap p i img {
  width: 22px;
  height: auto;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .cap p i span {
  margin: 0 5px;
  position: relative;
  top: -0.2em;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption p {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption p i {
  margin-right: 0.2em;
  line-height: 1;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption dl {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption dl dt {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  background: #EF3669;
  border-radius: 3px;
  width: 60px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption dl dd {
  flex: 1;
  margin-left: 5px;
  line-height: 1.4;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct {
  background: #fff;
  padding: 25px 4%;
  border-radius: 20px;
  margin-top: 40px;
  position: relative;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct img {
  width: 100%;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct .cmn_btn {
  margin-top: 6px;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct .cmn_btn a::before {
  background: #D9E8F0;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct .cmn_btn a::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path id="多角形_5" data-name="多角形 5" d="M6.634,1.5a1,1,0,0,1,1.732,0l5.769,10a1,1,0,0,1-.866,1.5H1.731a1,1,0,0,1-.866-1.5Z" transform="translate(13) rotate(90)" fill="%23006A9C"/></svg>');
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
}
#foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct .cmn_btn a span {
  position: relative;
  z-index: 2;
  color: #006A9C;
}
#foot_wrap #foot_ct02 {
  background: url(../img/common/footer_back_sp.webp) no-repeat center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 75px;
}
#foot_wrap #foot_ct02 ul {
  width: 88%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
#foot_wrap #foot_ct02 ul li {
  width: 50%;
  text-align: center;
  margin: 4px 0;
  position: relative;
}
#foot_wrap #foot_ct02 ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  border-right: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(35deg);
}
#foot_wrap #foot_ct02 ul li:nth-child(2n)::after {
  display: none;
}
#foot_wrap #foot_ct02 ul li a {
  font-size: 1.5rem;
  color: #fff;
}

#copy {
  padding: 10px 0;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

#copy a {
  font-size: 1.2rem;
  color: #fff;
}

#copy a span {
  font-size: 1.2rem;
  color: #fff;
}

/*---スマホ時のみ下部ついてくるナビ---*/
.mobile_under_nav {
  width: 100%;
  height: 55px;
  position: fixed;
  bottom: 0px;
  z-index: 999;
  background: url(../img/common/footer_back.webp) no-repeat center;
  background-size: cover;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.mobile_under_nav ul {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
}

.mobile_under_nav li {
  width: 25%;
  height: 55px;
  position: relative;
}
.mobile_under_nav li img {
  height: 45px;
  width: auto;
}

.mobile_under_nav li:nth-child(2)::after, .mobile_under_nav li:nth-child(3)::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  border-right: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(20deg);
}

.mobile_under_nav li:first-child {
  background: #EF3669;
  border-radius: 9px 0 0 0;
}

.mobile_under_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
}

/*-- lower共通 --*/
.lower_kv {
  position: relative;
}
.lower_kv .lower_kv_back {
  width: 100%;
  height: 50vw;
  background: url(../img/common/lower_kv_back.jpg) no-repeat left bottom;
  background-size: 230%;
  clip-path: ellipse(220% 100% at 50% 0%);
  position: absolute;
  top: 0;
}
.lower_kv .lower_kv_in {
  position: relative;
  z-index: 2;
  padding-top: 10vw;
  padding-bottom: 13vw;
}
.lower_kv .lower_kv_in .lower_ttl {
  width: 92%;
  position: relative;
  z-index: 3;
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.3;
  margin: 10vw auto 4vw auto;
}
.lower_kv .lower_kv_in .lower_ttl .en {
  display: block;
  font-family: "Pacifico", cursive;
  color: #04A1E9;
  font-size: 1.4rem;
}
.lower_kv .lower_kv_in .lower_kv_illust p {
  position: absolute;
}
.lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_01 {
  width: 15vw;
  height: auto;
  top: 6%;
  left: 8%;
}
.lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_02 {
  width: 33vw;
  height: auto;
  top: 8%;
  left: 58%;
}
.lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_03 {
  width: 12vw;
  height: auto;
  bottom: 8%;
  left: -2%;
}
.lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_04 {
  width: 53vw;
  height: auto;
  bottom: 1%;
  left: 4%;
}
.lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_05 {
  width: 12vw;
  height: auto;
  bottom: 4%;
  right: 6%;
}
.lower_kv .lower_kv_in .lower_main picture {
  display: block;
  width: 92%;
  height: 58vw;
  margin: 0 auto;
}
.lower_kv .lower_kv_in .lower_main picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.cmn_ttl02 {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.3;
  text-align: center;
}
.cmn_ttl02 .en {
  display: block;
  line-height: 0;
  margin-bottom: 15px;
}
.cmn_ttl02 .en span {
  position: relative;
  font-family: "Pacifico", cursive;
  font-size: 1.6rem;
  opacity: 0.8;
}
.cmn_ttl02 .en i {
  position: absolute;
  right: -6px;
  top: 5px;
}
.cmn_ttl02 .en i::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
}
.cmn_ttl02 .en i::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: 5px;
}

.lower_nav {
  width: 94%;
  margin: 40px auto;
}
.lower_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lower_nav ul li {
  width: 49%;
  margin: 5px 0;
}
.lower_nav ul li a {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 65px;
  background: rgba(0, 106, 156, 0.15);
  font-family: "Zen Maru Gothic", serif;
  color: #006A9C;
  font-size: 1.5rem;
  border-radius: 45px;
  position: relative;
  padding-right: 30px;
  padding-left: 20px;
  box-sizing: border-box;
  transition: all 0.4s;
  line-height: 1.4;
  text-align: center;
}
.lower_nav ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 45px;
  position: absolute;
  left: 0;
  top: 0;
}
.lower_nav ul li a::after {
  display: block;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path id="多角形_5" data-name="多角形 5" d="M6.634,1.5a1,1,0,0,1,1.732,0l5.769,10a1,1,0,0,1-.866,1.5H1.731a1,1,0,0,1-.866-1.5Z" transform="translate(13) rotate(90)" fill="%23006A9C"/></svg>');
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  transform: rotate(90deg);
}

/*-- gre --*/
.gre {
  position: relative;
}
.gre::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(131vw + 700px);
  background: url(../img/gre/gre_ct01_back.webp) no-repeat 18% top;
  background-size: cover;
  position: absolute;
  top: calc(47vw + 70px);
  z-index: 4;
  pointer-events: none;
}
.gre #gre_ct01 .cmn_ttl02, .gre #gre_ct02 .cmn_ttl02, .gre #gre_ct04 .cmn_ttl02 {
  color: #05203B;
  margin-bottom: 30px;
}
.gre #gre_ct01 .cmn_ttl02 .en, .gre #gre_ct02 .cmn_ttl02 .en, .gre #gre_ct04 .cmn_ttl02 .en {
  color: #04A1E9;
}
.gre #gre_ct01 .cmn_ttl02 .en i::before, .gre #gre_ct01 .cmn_ttl02 .en i::after, .gre #gre_ct02 .cmn_ttl02 .en i::before, .gre #gre_ct02 .cmn_ttl02 .en i::after, .gre #gre_ct04 .cmn_ttl02 .en i::before, .gre #gre_ct04 .cmn_ttl02 .en i::after {
  background: #04A1E9;
}
.gre #gre_ct01 {
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  padding: 50px 0;
  margin-top: 20px;
}
.gre #gre_ct01 .cmn_ttl02 {
  margin-bottom: 30px;
}
.gre #gre_ct01 p {
  line-height: 2.25;
}
.gre #gre_ct02 {
  position: relative;
  padding: 150px 0 30px 0;
  margin: 60px auto 30px auto;
}
.gre #gre_ct02 .circle {
  display: block;
  position: absolute;
  height: 95%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.28);
  top: 50%;
  border-radius: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gre #gre_ct02 .flex {
  margin-top: 60px;
  margin-bottom: 30px;
}
.gre #gre_ct02 .flex .l_ct {
  position: relative;
}
.gre #gre_ct02 .flex .l_ct #gre_illust01 {
  position: absolute;
  width: 130px;
  top: -20px;
  left: -10%;
}
.gre #gre_ct02 .flex .l_ct #gre_illust02 {
  position: absolute;
  width: 100px;
  right: -2%;
  bottom: -20px;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 4%;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .photo {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 10px;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .photo picture {
  display: block;
  width: 90%;
  max-width: 293px;
  margin: 0 auto;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .photo p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 162px;
  height: 42px;
  border: 1px solid #04A1E9;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  color: #04A1E9;
  font-size: 1.5rem;
  border-radius: 30px;
  background: #fff;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .name {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .name dl {
  display: inline-flex;
  line-height: 1;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .name dl dt {
  color: #04A1E9;
  font-size: 2.2rem;
  margin-top: 15px;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .name dl dd {
  flex: 1;
  font-size: 4.2rem;
  margin-left: 15px;
}
.gre #gre_ct02 .flex .l_ct .profile_photo_box .name dl dd .en {
  display: block;
  font-size: 1.8rem;
  color: #A8C2DB;
  font-family: "Pacifico", cursive;
  margin-top: 15px;
}
.gre #gre_ct02 .flex .r_ct {
  margin-top: 40px;
}
.gre #gre_ct02 .flex .r_ct dl {
  margin: 30px 0;
}
.gre #gre_ct02 .flex .r_ct dl dt {
  color: #04A1E9;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.gre #gre_ct02 .movie_box {
  background: #04A1E9;
  padding: 40px 0;
  border-radius: 20px;
  position: relative;
  margin-top: 40px;
}
.gre #gre_ct02 .movie_box #gre_illust_left {
  width: 160px;
  position: absolute;
  left: -70px;
  top: -20px;
}
.gre #gre_ct02 .movie_box #gre_illust_right {
  width: 160px;
  position: absolute;
  right: -70px;
  top: -20px;
}
.gre #gre_ct02 .movie_box .movie_box_in {
  width: 92%;
  margin: 0 auto;
}
.gre #gre_ct02 .movie_box .movie_box_in h3 {
  text-align: center;
  color: #fff;
  line-height: 1.6;
  font-size: 2rem;
  margin-bottom: 20px;
}
.gre #gre_ct02 .movie_box .movie_box_in picture {
  display: block;
  border-radius: 20px;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.gre #gre_ct02 .movie_box .movie_box_in picture iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gre #gre_ct03 {
  padding: 40px 0;
}
.gre #gre_ct03 .cmn_ttl02 {
  margin-bottom: 30px;
}
.gre #gre_ct03 ul li {
  margin: 20px 0;
}
.gre #gre_ct03 ul li.cmn_btn a .cmn_btn_wrap {
  padding-left: 0;
}
.gre #gre_ct04 {
  padding: 40px 0 10px 0;
  position: relative;
}
.gre #gre_ct04 #gre_illust03 {
  width: 100px;
  position: absolute;
  top: 20px;
  left: 2%;
}
.gre #gre_ct04 #gre_illust04 {
  width: 180px;
  position: absolute;
  top: 20px;
  right: -8%;
}
.gre #gre_ct04 #gre_illust05 {
  width: 100px;
  position: absolute;
  left: -4%;
  bottom: -20px;
}
.gre #gre_ct04 .gre_ct04_in {
  background: rgba(255, 255, 255, 0.8);
  padding: 100px 0 60px 0;
  border-radius: 20px;
  position: relative;
}
.gre #gre_ct04 .gre_ct04_in ul li {
  position: relative;
  padding-left: 60px;
  margin: 20px 0;
  font-size: 1.8rem;
}
.gre #gre_ct04 .gre_ct04_in ul li span {
  color: #04A1E9;
}
.gre #gre_ct04 .gre_ct04_in ul li i {
  width: 55px;
  position: absolute;
  left: 0;
  top: -0.75em;
}

/*-- info --*/
.info #info_ct01 .cmn_ttl02, .info #info_ct03 .cmn_ttl02, .info #info_ct04 .cmn_ttl02 {
  color: #05203B;
  margin-bottom: 30px;
}
.info #info_ct01 .cmn_ttl02 .en, .info #info_ct03 .cmn_ttl02 .en, .info #info_ct04 .cmn_ttl02 .en {
  color: #04A1E9;
}
.info #info_ct01 .cmn_ttl02 .en i::before, .info #info_ct01 .cmn_ttl02 .en i::after, .info #info_ct03 .cmn_ttl02 .en i::before, .info #info_ct03 .cmn_ttl02 .en i::after, .info #info_ct04 .cmn_ttl02 .en i::before, .info #info_ct04 .cmn_ttl02 .en i::after {
  background: #04A1E9;
}
.info #info_ct01 {
  padding: 100px 0 40px 0;
  margin-top: -60px;
}
.info #info_ct01 .info_ct01_in {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 0;
}
.info #info_ct01 .info_ct01_in .medical_care_subjects {
  position: relative;
  margin-top: -60px;
}
.info #info_ct01 .info_ct01_in .medical_care_subjects dl {
  background: #04A1E9;
  border-radius: 30px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 46px;
  font-size: 2rem;
}
.info #info_ct01 .info_ct01_in .medical_care_subjects #info_ilst01 {
  width: 70px;
  position: absolute;
  right: 0;
  bottom: -75px;
}
.info #info_ct01 .info_ct01_in .medical_care_time {
  margin-top: 60px;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table {
  width: 94%;
  margin: 20px auto;
  font-size: 1.5rem;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table {
  width: 100%;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr th {
  border-top: 1px solid #05203B;
  border-bottom: 1px solid #05203B;
  padding: 5px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr th:first-child {
  text-align: left;
  border-right: 1px solid #05203B;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td {
  border-bottom: 1px dashed #05203B;
  padding: 8px 0;
  text-align: center;
  font-size: 1.5rem;
  vertical-align: middle;
  position: relative;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td:first-child {
  text-align: left;
  font-weight: bold;
  padding-left: 1%;
  border-right: 1px solid #05203B;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td:first-child span {
  font-size: 1.6rem;
  margin-top: 2px;
  display: block;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(0.8) translate(-50%, -50%);
  width: 16px;
  height: auto;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td.time {
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td.star img {
  width: 21px;
  height: auto;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr:last-of-type td {
  border-bottom: 1px solid #05203B;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption {
  margin-top: 10px;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p {
  position: relative;
  margin-bottom: 5px;
  padding-left: 48px;
  display: block;
  line-height: 1.6;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p i {
  margin-right: 0.2em;
  line-height: 1;
  display: flex;
  align-items: center;
  width: 48px;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p i img {
  width: 22px;
  height: auto;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p i span {
  margin: 0 5px;
  position: relative;
  top: -0.2em;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p .yoyaku {
  color: #EF3669;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption p {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption p i {
  margin-right: 0.2em;
  line-height: 1;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption dl {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption dl dt {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  background: #EF3669;
  border-radius: 3px;
  width: 60px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption dl dd {
  flex: 1;
  margin-left: 5px;
  line-height: 1.4;
}
.info #info_ct02 {
  padding-top: 40px;
  margin-top: -40px;
}
.info #info_ct02 h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 10px;
}
.info #info_ct02 .lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
}
.info #info_ct02 .flex .bringing_box {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.22);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 20px 4%;
}
.info #info_ct02 .flex .bringing_box p {
  width: 80px;
  height: auto;
  animation: bubblePulse 6s ease-in-out infinite;
}
.info #info_ct02 .flex .bringing_box dl {
  flex: 1;
  margin-left: 20px;
}
.info #info_ct02 .flex .bringing_box dl dt {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.info #info_ct03 {
  padding: 40px 0;
  margin-top: -40px;
}
.info #info_ct03 .info_ct03_in {
  background: rgba(255, 255, 255, 0.8);
  padding: 60px 0;
}
.info #info_ct03 .fit_wrap .medical_nav {
  background: #04A1E9;
  border-radius: 20px;
}
.info #info_ct03 .fit_wrap .medical_nav ul {
  width: 92%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.info #info_ct03 .fit_wrap .medical_nav ul li {
  width: 50%;
  border-bottom: 1px dashed #fff;
  border-right: 1px dashed #fff;
  box-sizing: border-box;
}
.info #info_ct03 .fit_wrap .medical_nav ul li:nth-child(2n) {
  border-right: none;
}
.info #info_ct03 .fit_wrap .medical_nav ul li:nth-child(3), .info #info_ct03 .fit_wrap .medical_nav ul li:nth-child(4) {
  border-bottom: none;
}
.info #info_ct03 .fit_wrap .medical_nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 5px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  font-size: 1.8rem;
}
.info #info_ct03 .fit_wrap .medical_right {
  margin-top: 40px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct {
  padding: 40px 0;
  border-bottom: 1px dashed #05203B;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in {
  padding-top: 120px;
  margin-top: -120px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct:first-of-type {
  border-top: 1px dashed #05203B;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .line_ttl {
  position: relative;
  margin-bottom: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .line_ttl span {
  font-size: 3rem;
  color: #04A1E9;
  line-height: 1.6;
  position: relative;
  padding-left: 60px;
  padding-bottom: 7px;
  display: block;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .line_ttl span i {
  width: 45px;
  position: absolute;
  left: 3px;
  bottom: 0;
  line-height: 1;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .line_ttl::after {
  content: "";
  display: block;
  background: url(../img/info/info_ilst02_line.svg) repeat-x;
  width: 100%;
  height: 9px;
  background-size: contain;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex .r_ct {
  width: 80%;
  margin: 20px auto 0 auto;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex .r_ct picture {
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex .l_ct h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination {
  margin-top: 40px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination h4 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .line_box {
  padding: 20px 4%;
  border: 3px solid #D9E8F0;
  border-radius: 20px;
  margin: 20px auto;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .line_box dl dt {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .line_box dl dd ul li {
  display: inline-block;
  margin-right: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box #info_ilst03 {
  width: 80px;
  position: absolute;
  bottom: -40px;
  left: -6%;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box .bnr {
  margin-top: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box {
  background: #D9E8F0;
  padding: 20px 4%;
  border-radius: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct {
  background: #fff;
  padding: 20px 4%;
  border-radius: 20px;
  margin-top: 20px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl {
  margin-bottom: 10px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  border-radius: 30px;
  background: #05203B;
  color: #fff;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dt i {
  line-height: 1;
  margin-right: 10px;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dd {
  text-align: center;
}
.info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dd a {
  font-size: 3rem;
  color: #05203B;
}
.info #info_ct04 {
  margin-top: 80px;
  padding: 40px 0;
}
.info #info_ct04 .info_ct04_in {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 0;
}
.info #info_ct04 .info_ct04_in .examination_ct {
  margin: 50px auto;
}
.info #info_ct04 .info_ct04_in .examination_ct h3 {
  padding-left: 55px;
  position: relative;
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.info #info_ct04 .info_ct04_in .examination_ct h3 i {
  width: 40px;
  position: absolute;
  left: 0;
  top: 5px;
}
.info #info_ct04 .info_ct04_in .examination_ct h4 {
  font-size: 2rem;
  color: #04A1E9;
  line-height: 1.6;
  margin-bottom: 15px;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back {
  background: #fff;
  padding: 20px 4% 40px 4%;
  border-radius: 20px;
  margin: 20px auto;
  position: relative;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back .coral {
  width: 90px;
  position: absolute;
  right: -3%;
  bottom: -50px;
  z-index: 2;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back .kiki_photo {
  display: block;
  max-width: 252px;
  margin: 0 auto;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back .kiki_photo span {
  display: flex;
  background: #05203B;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 30px;
  max-width: 210px;
  margin: 10px auto;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back .two_photo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back .two_photo picture {
  width: 49%;
  line-height: 1;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back .text_link {
  color: #04A1E9;
  text-decoration: underline;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back.other h4 {
  text-align: center;
  color: #05203B;
  font-size: 2.2rem;
  border-bottom: 1px solid #04A1E9;
  padding-bottom: 6px;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back.other .two_photo {
  display: block;
}
.info #info_ct04 .info_ct04_in .examination_ct .white_back.other .two_photo picture {
  width: 100%;
  margin-bottom: 30px;
}
.info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .text {
  margin-top: 30px;
}
.info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .text .table_wrap {
  width: 100%;
  overflow-x: scroll;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .text table {
  width: 500px;
}
.info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .text table tr th {
  background: #04A1E9;
  color: #fff;
  line-height: 1.6;
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .text table tr td {
  background: #D9E8F0;
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*-- clinic --*/
.clinic {
  position: relative;
}
.clinic::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(131vw + 700px);
  background: #ffffff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  position: absolute;
  top: 0;
  z-index: 4;
  pointer-events: none;
}
.clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl {
  display: flex;
}
.clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl p.clinic_tour_ilst_l {
  max-width: 100px;
  width: 30%;
}
.clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl p.clinic_tour_ilst_r {
  width: 20%;
  max-width: 70px;
  display: flex;
  align-items: flex-end;
}
.clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl h2 {
  color: #04A1E9;
  font-size: 1.8rem;
  font-weight: normal;
  flex: 1;
  display: flex;
  justify-content: center;
  line-height: 1.4;
  flex-direction: column;
  margin-left: 10px;
}
.clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl h2 .en {
  display: block;
  font-size: 3.4rem;
  font-family: "Pacifico", cursive;
}
.clinic #clinic_ct01 .flex .l_ct h3 {
  font-size: 2.5rem;
  line-height: 1.8461538462;
  margin: 10px 0;
}
.clinic #clinic_ct01 .flex .l_ct p {
  margin-top: 20px;
}
.clinic #clinic_ct01 .flex .l_ct p span {
  color: #04A1E9;
}
.clinic #clinic_ct01 .flex .r_ct {
  background: #fff;
  margin-top: 30px;
}
.clinic #clinic_ct01 .flex .r_ct p {
  line-height: 1;
  position: relative;
  height: 100vw;
}
.clinic #clinic_ct01 .flex .r_ct p iframe {
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
}
.clinic .clinic_slide {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.clinic #clinic_ct02 {
  padding: 60px 0 10px 0;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.clinic #clinic_ct02 .clinic_ct02_in {
  background: rgba(255, 255, 255, 0.8);
  padding: 80px 0 10px 0;
  border-radius: 20px;
  margin-top: 200px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p, .clinic #clinic_ct02 .clinic_gallery_ttl h2 {
  position: absolute;
  left: 50%;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_01 {
  width: 52px;
  top: 10px;
  margin-left: -200px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_02 {
  width: 24px;
  top: 10px;
  margin-left: -164px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_03 {
  width: 150px;
  top: -20px;
  margin-left: -164px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_04 {
  width: 125px;
  top: 82px;
  margin-left: -185px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_06 {
  width: 22px;
  top: 148px;
  margin-left: 81px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_07 {
  width: 51px;
  top: -22px;
  margin-left: 45px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_08 {
  width: 114px;
  top: 29px;
  margin-left: 76px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl p#bb_09 {
  width: 22px;
  top: -32px;
  margin-left: 135px;
}
.clinic #clinic_ct02 .clinic_gallery_ttl h2 {
  z-index: 2;
}
.clinic #clinic_ct02 .clinic_gallery_ttl h2#bb_05 {
  width: 229px;
  top: 120px;
  margin-left: -115px;
}
.clinic #clinic_ct02 .clinic_slide_wrap {
  margin-top: 20px;
}
.clinic #clinic_ct02 .thumbBoxCap {
  background: #fff;
  position: relative;
  padding: 10px 0;
}
.clinic #clinic_ct02 .thumbBoxCap .slick-slider {
  position: relative;
  z-index: 2;
  padding: 10px;
}
.clinic #clinic_ct02 .thumbBoxCap .slick-track {
  display: flex;
  align-items: center;
}
.clinic #clinic_ct02 .thumbBoxCap .slick-initialized .slick-slide {
  margin: 0;
}
.clinic #clinic_ct02 .thumbBoxCap .title {
  border: none;
  font-weight: bold;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  height: 100%;
  color: #05203B;
  margin-bottom: 8px;
}
.clinic #clinic_ct02 .thumbBoxCap .title span {
  font-size: 1.8rem;
}

/*-- acc --*/
#acc_ct01 {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 0;
  margin-top: 20px;
}
#acc_ct01 .acc_ct01_01 {
  position: relative;
  width: 92%;
  margin: 0 auto;
  padding: 0 4%;
}
#acc_ct01 .acc_ct01_01::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 145px);
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 105px;
  left: 0;
}
#acc_ct01 .acc_ct01_01 .acc_lead {
  position: relative;
  padding-left: 60px;
  z-index: 2;
}
#acc_ct01 .acc_ct01_01 .acc_lead .acc_dolphin {
  position: absolute;
  width: 50px;
  height: auto;
  left: 0;
  top: 0;
}
#acc_ct01 .acc_ct01_01 .acc_lead h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #04A1E9;
  line-height: 1.4;
}
#acc_ct01 .acc_ct01_01 .acc_lead h2 span {
  color: #05203B;
}
#acc_ct01 .acc_ct01_01 .acc_lead p:not(.acc_dolphin) {
  background: #05203B;
  border-radius: 100px;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 30px;
  margin-top: 15px;
}
#acc_ct01 .acc_ct01_01 .acc_lead p:not(.acc_dolphin) span {
  font-size: 2.2rem;
  margin-left: 0.2em;
}
#acc_ct01 .acc_ct01_01 .acc_lead p:not(.acc_dolphin) img {
  width: 40px;
  height: auto;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
#acc_ct01 .acc_ct01_01 .acc_box {
  position: relative;
  z-index: 2;
  margin-top: 35px;
}
#acc_ct01 .acc_ct01_01 .acc_box #acc_shellfish {
  width: 50px;
  position: absolute;
  left: 0;
  top: -40px;
}
#acc_ct01 .acc_ct01_01 .acc_box .cmn_btn {
  width: 90%;
  margin: 20px auto 0 auto;
}
#acc_ct01 .acc_ct01_01 .acc_box .cmn_btn a {
  color: #006A9C;
}
#acc_ct01 .acc_ct01_01 .acc_box .cmn_btn a::before {
  background: #D9E8F0;
  border-color: #fff;
}
#acc_ct01 .acc_ct01_01 .acc_box .cmn_btn a::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path id="多角形_5" data-name="多角形 5" d="M6.634,1.5a1,1,0,0,1,1.732,0l5.769,10a1,1,0,0,1-.866,1.5H1.731a1,1,0,0,1-.866-1.5Z" transform="translate(13) rotate(90)" fill="%23006A9C"/></svg>');
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
}
#acc_ct01 .acc_ct01_02 {
  width: 92%;
  margin: 40px auto 10px auto;
}
#acc_ct01 .acc_ct01_02 .flex {
  display: flex;
  flex-direction: column-reverse;
}
#acc_ct01 .acc_ct01_02 .flex .r_ct .accc_syozai p {
  line-height: 1.6;
  margin-bottom: 10px;
}
#acc_ct01 .acc_ct01_02 .flex .r_ct .accc_syozai p a {
  color: #05203B;
  font-size: 2.4rem;
}
#acc_ct01 .acc_ct01_02 .flex .r_ct .traffic_method {
  border: 1px solid #05203B;
  border-radius: 20px;
  padding: 10px 4%;
  margin-top: 20px;
}
#acc_ct01 .acc_ct01_02 .flex .r_ct .traffic_method ul li {
  line-height: 1.6;
  position: relative;
  padding-left: 45px;
  margin: 25px 0;
}
#acc_ct01 .acc_ct01_02 .flex .r_ct .traffic_method ul li i {
  display: flex;
  width: 35px;
  height: 35px;
  background: #05203B;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: -2px;
}
#acc_ct01 .acc_ct01_02 .flex .l_ct {
  position: relative;
  height: 90vw;
  margin-top: 30px;
}
#acc_ct01 .acc_ct01_02 .flex .l_ct p {
  position: absolute;
}
#acc_ct01 .acc_ct01_02 .flex .l_ct p#bubble_photo01 {
  width: 62vw;
  left: -8%;
}
#acc_ct01 .acc_ct01_02 .flex .l_ct p#bubble_photo02 {
  width: 32vw;
  right: 0;
  top: 12%;
}
#acc_ct01 .acc_ct01_02 .flex .l_ct p#bubble_photo03 {
  width: 40vw;
  right: 6%;
  bottom: 0;
}
#acc_ct01 .acc_ct01_02 .flex .l_ct p#acc_squid {
  width: 30vw;
  top: 1%;
  right: 19%;
}

#acc_ct02 {
  margin-top: 40px;
}
#acc_ct02 .ct_padding {
  padding-bottom: 0;
}
#acc_ct02 .cmn_ttl02 {
  margin-bottom: 30px;
}
#acc_ct02 ul li {
  margin: 20px 0;
}
#acc_ct02 ul li figure {
  position: relative;
  line-height: 1;
  border-radius: 20px;
  overflow: hidden;
}
#acc_ct02 ul li figure figcaption {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 10px 4%;
  bottom: 0;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
}

/*-- post --*/
#news_ct1 {
  padding: 40px 0 40px 0;
}
#news_ct1 .ct_padding {
  padding-top: 0;
}
#news_ct1 #news_ct1_in {
  width: 92%;
  margin: 0 auto;
  padding: 30px 0 0 0;
}
#news_ct1 #post_ttl h4 {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  color: #05203B;
}
#news_ct1 #post_ttl h4 #cat {
  width: 80px;
  height: 24px;
  margin-left: 10px;
}
#news_ct1 #post_ttl h3 {
  color: #05203B;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  line-height: 1.6;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #05203B;
}
#news_ct1 #detailWrap {
  width: 96%;
  margin: 0 auto;
}
#news_ct1 #back_info_list {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
#news_ct1 #back_info_list .cmn_btn {
  margin-top: 6px;
  width: 90%;
  max-width: 300px;
}
#news_ct1 #back_info_list .cmn_btn a::before {
  background: #D9E8F0;
}
#news_ct1 #back_info_list .cmn_btn a::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path id="多角形_5" data-name="多角形 5" d="M6.634,1.5a1,1,0,0,1,1.732,0l5.769,10a1,1,0,0,1-.866,1.5H1.731a1,1,0,0,1-.866-1.5Z" transform="translate(13) rotate(90)" fill="%23006A9C"/></svg>');
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
}
#news_ct1 #back_info_list .cmn_btn a span {
  position: relative;
  z-index: 2;
  color: #006A9C;
}
#news_ct1 #back_info_list .cmn_btn a .cmn_btn_wrap {
  padding-left: 0;
}

/*-- faq --*/
.faq #faq_ct01, .faq #faq_ct02 {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin: 30px auto;
}
.faq #faq_ct01 .cmn_ttl02, .faq #faq_ct02 .cmn_ttl02 {
  color: #05203B;
  margin-bottom: 30px;
}
.faq #faq_ct01 .cmn_ttl02 .en, .faq #faq_ct02 .cmn_ttl02 .en {
  color: #04A1E9;
}
.faq #faq_ct01 .cmn_ttl02 .en i::before, .faq #faq_ct01 .cmn_ttl02 .en i::after, .faq #faq_ct02 .cmn_ttl02 .en i::before, .faq #faq_ct02 .cmn_ttl02 .en i::after {
  background: #04A1E9;
}
.faq .content {
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
.faq .faq_box {
  position: relative;
}
.faq .faq_list {
  width: 94%;
  margin: 0 auto;
}
.faq .faq_list a.open_ct {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.faq .faq_list a.open_ct:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/faq/plus.png) no-repeat 0 0;
  background-size: contain;
  position: absolute;
  right: 10px;
  transition: all 600ms;
  top: 50%;
  margin-top: -10px;
}
.faq .faq_list a.open_ct span {
  display: block;
  line-height: 1.6em;
  font-size: 2rem;
  padding: 15px 40px 15px 60px;
  position: relative;
  transition: 0.4s ease-in-out;
  color: #05203B;
}
.faq .faq_list a.open_ct span i {
  display: block;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 10px;
  line-height: 0;
  background: url("../img/faq/q.png") no-repeat;
  background-size: contain;
  position: absolute;
}
.faq .faq_list li a.open:after {
  background: url("../img/faq/minus.png") no-repeat 0 0;
  background-size: contain;
}
.faq .faq_list a.open_ct:hover span {
  color: #04A1E9;
}
.faq .faq_list li {
  transition: 0.4s ease-in-out;
  border-radius: 10px;
  background: #fff;
  margin: 20px 0;
}
.faq .faq_list .st-content {
  display: none;
  position: relative;
}
.faq .faq_list .st-content .st_ct_in {
  padding: 0px 4% 40px 60px;
  position: relative;
  margin-top: 15px;
}
.faq .faq_list .st-content .st_ct_in i {
  display: block;
  width: 40px;
  height: 40px;
  left: 10px;
  top: -5px;
  line-height: 0;
  background: url("../img/faq/a.png") no-repeat;
  background-size: contain;
  position: absolute;
}
.faq .faq_list .st-content .st_ct_in p.txt i {
  position: relative;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0.1rem;
}
.faq .faq_list .st-content .st_ct_in .acc_denwa a {
  padding: 0 0.3em;
  color: #05203B;
}
.faq .faq_list .st-content .image {
  margin-top: 10px;
  line-height: 1;
}
.faq .faq_list .st-content .st_ct_in .cmn_btn a {
  font-size: 1.6rem;
  text-decoration: none;
  height: 65px;
  padding-right: 20px;
}
.faq .faq_list .st-content .st_ct_in .yoyaku_btn {
  display: block;
  margin-top: 20px;
}
.faq .faq_list .st-content .st_ct_in .yoyaku_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EF3669;
  width: 100%;
  max-width: 240px;
  height: 50px;
  border-radius: 25px;
  color: #EF3669;
}
.faq .faq_list .st-content .st_ct_in .yoyaku_btn a img {
  margin-right: 10px;
}

@media screen and (min-width: 640px) {
  html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    min-width: 1300px;
  }
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  .ssp_only {
    display: none;
  }
  .tab_only {
    display: block;
  }
  #wrap {
    padding-top: 0;
  }
  #all_wrap {
    min-width: 1200px;
    margin: 0 auto;
  }
  .cmn_btn a:hover {
    animation: bubblePulse_hover 3s infinite ease-in-out;
  }
  .scrolled #head_ct {
    height: 90px;
  }
  #head_ct {
    width: 100%;
    min-width: 1200px;
    height: 105px;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.4s;
  }
  #head_ct .flex {
    width: 94%;
    display: flex;
    align-items: center;
    margin-left: 5%;
  }
  #head_ct .flex .head_l {
    width: 30%;
    max-width: 413px;
  }
  #head_ct .flex .head_l h1 {
    width: 100%;
    position: inherit;
  }
  #head_ct .flex .head_r {
    flex: 1;
    display: flex;
    margin-left: 25px;
  }
  #head_ct .flex .head_r .head_rl {
    flex: 1;
  }
  #head_ct .flex .head_r #head_yoyaku {
    width: 20%;
    max-width: 196px;
    margin-left: 25px;
    display: flex;
    align-items: center;
  }
  #head_ct .flex .head_r #head_yoyaku p {
    width: 100%;
  }
  #head_ct .flex .head_r #head_yoyaku a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    height: 60px;
    background: #EF3669;
    border-radius: 30px;
    font-size: 1.8rem;
    transition: 0.4s;
  }
  #head_ct .flex .head_r #head_yoyaku a i {
    position: relative;
    margin-right: 10px;
    top: 5px;
  }
  #head_ct .flex .head_r #head_yoyaku a:hover {
    background: #04A1E9;
  }
  #head_ct .flex .head_r .head_info_flex {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  #head_ct .flex .head_r .head_info_flex .denwa {
    color: #05203B;
    font-size: 2.6rem;
    position: relative;
    padding-left: 32px;
    line-height: 1;
    margin-left: 20px;
  }
  #head_ct .flex .head_r .head_info_flex .denwa i {
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 24px;
  }
  #head_ct .flex .head_r #gnav .gnav_in {
    display: flex;
    justify-content: flex-end;
  }
  #head_ct .flex .head_r #gnav .gnav_list_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
  }
  #head_ct .flex .head_r #gnav .gnav_list_wrap li a {
    color: #05203B;
    position: relative;
    transition: 0.6s;
  }
  /*-- lower共通 --*/
  /*-- gre --*/
  /*-- info --*/
  /*-- clinic --*/
  /*-- faq --*/
  /*-- acc --*/
  /*-- post --*/
  /*-- サイドナビ --*/
}
@media screen and (min-width: 640px) and (max-width: 1400px) {
  #head_ct .flex .head_r #gnav .gnav_list_wrap li a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 640px) {
  #head_ct .flex .head_r #gnav .gnav_list_wrap li a::after {
    content: "";
    display: block;
    width: 11px;
    height: 12px;
    background: url(../img/common/menu_bubble.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: -3px;
    top: -3px;
    transition: 0.6s;
    opacity: 0;
    transform: scale(0);
  }
  #head_ct .flex .head_r #gnav .gnav_list_wrap li.active a {
    color: #04A1E9;
  }
  #head_ct .flex .head_r #gnav .gnav_list_wrap li.active a::after {
    opacity: 1;
    transform: scale(1);
    top: -8px;
    right: -13px;
  }
  #home_kv {
    clip-path: ellipse(200% 100% at 50% 0%);
    padding-bottom: 30px;
  }
  #main_ct_back_light {
    width: 3829px;
    height: 3519px;
    background: url(../img/common/back_light.webp) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    mix-blend-mode: luminosity;
    opacity: 0.2;
  }
  #main_ct #main_ct_in {
    padding-bottom: 550px;
  }
  #main_visual {
    padding-top: 140px;
    margin-bottom: 0;
  }
  #main_visual .flex {
    display: flex;
    flex-direction: row-reverse;
    width: 96%;
    max-width: 1330px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 640px) and (min-width: 1600px) {
  #main_visual .flex .kv {
    width: 75%;
    margin-right: 0;
  }
}
@media screen and (min-width: 640px) {
  #main_visual .kv {
    width: calc(75% - 60px);
    max-width: 1100px;
    height: 623px;
    margin-right: 60px;
  }
  #main_visual .kv .splide {
    border-radius: 40px;
    visibility: visible !important;
  }
  #main_visual .kv .splide .splide__slide .slide-media img {
    width: 100%;
  }
  #main_visual .kv #kame_communication {
    position: absolute;
    width: 261px;
    height: auto;
    right: -60px;
    bottom: -10px;
  }
  #main_visual .kv #kame_communication a:hover {
    animation: bubblePulse_hover 3s infinite ease-in-out;
  }
  #main_visual .slide-info {
    flex: 1;
    padding-bottom: 0;
    margin-top: 40px;
  }
  #main_visual .slide-info .kv_text {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-left: 0;
    width: 85%;
  }
  #main_visual .slide-info .kv_text h1 {
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    line-height: 1.6;
    height: 500px;
    width: 130px;
  }
  #main_visual .slide-info .kv_text p {
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    margin-top: 40px;
    width: 120px;
  }
  #main_visual .slide-info .kv_illust #kv_illust_l {
    left: -95px;
    bottom: -59px;
    width: 215px;
  }
  #main_visual .slide-info .kv_illust #kv_illust_r {
    width: 158px;
    right: -28px;
    top: 338px;
  }
  #main_visual .slide-info .en {
    right: 30px;
    bottom: 26px;
  }
  #index_ct01 {
    position: relative;
  }
  #index_ct01 .index_ct01_in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #index_ct01 .index_ct01_in .content {
    width: 100%;
    max-width: 1200px;
  }
  #index_ct01 .index_ct01_in .index_ct01_ttl h2 {
    font-size: 3.6rem;
  }
  #index_ct01 .index_ct01_in .index_ct01_ttl h2 span {
    font-size: 1.6rem;
  }
  #index_ct01 .index_ct01_in .flex {
    display: flex;
    justify-content: space-between;
  }
  #index_ct01 .index_ct01_in .flex .index_news {
    width: 47%;
  }
  #index_ct01 .index_ct01_in .flex .index_news #news_in {
    width: 100%;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table {
    width: 47%;
    margin-top: 0px;
    margin-bottom: 0;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table {
    width: 100%;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr th {
    font-size: 1.6rem;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr th.zikan_ttl {
    width: 22%;
    padding: 14px 3%;
    text-align: center;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr th:nth-child(2) {
    width: 11%;
    padding-left: 2.5%;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr td {
    line-height: 1.6;
    padding-top: 21px;
    padding-bottom: 18px;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr td:first-child {
    font-size: 1.6rem;
    width: 32%;
    padding-left: 3%;
    letter-spacing: 0.05em;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr td:first-child span {
    display: inline;
    position: absolute;
    right: 9%;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 0px;
    letter-spacing: 0.05em;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr td:nth-child(2) img {
    left: 60%;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr td img {
    transform: scale(1) translate(-50%, -50%);
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table table tr.gogo td {
    padding-top: 21px;
    padding-bottom: 18px;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table .table_caption {
    font-size: 1.6rem;
    margin-top: 15px;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table .table_caption .cap p {
    margin-bottom: 8px;
    line-height: 1.2;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table .table_caption .cap p span {
    top: -0.3em;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table .table_caption .kyushin {
    margin-top: 15px;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table .table_caption dl dt {
    font-size: 1.5rem;
    width: 85px;
    height: 25px;
  }
  #index_ct01 .index_ct01_in .flex .index_time_table .time_table .table_caption dl dd {
    margin-left: 10px;
  }
  #index_ct01 li.oneitem .news_item {
    padding: 10px 10px;
    width: calc(100% - 20px);
  }
  #index_ct01 li.oneitem .news_item dl {
    margin-top: 8px;
  }
  #index_ct01 li.oneitem .news_item dl dt.news_day span#category {
    margin-left: 20px;
  }
  #index_ct01 dd.news_List_Title {
    padding-right: 50px;
  }
  #index_ct01 li.oneitem a:hover {
    background: rgba(4, 161, 233, 0.1);
  }
  #index_ct01 li.oneitem a::before {
    right: 10px;
    margin-top: -9px;
    transition: 0.4s;
  }
  #index_ct01 li.oneitem a:hover::before {
    background: #05203B;
  }
  #index_ct01 li.oneitem a::after {
    right: 14px;
    width: 15px;
    height: 13px;
    margin-top: -7px;
  }
  #index_ct02 {
    padding-top: 40px;
    position: relative;
  }
  #index_ct02 #yellow_fish {
    position: absolute;
    width: 445px;
    left: 50%;
    margin-left: 310px;
    top: -76px;
  }
  #index_ct02 #fish_school_left {
    width: 782px;
    left: 50%;
    margin-left: -980px;
    top: -135px;
  }
  #index_ct02 #penguin_illust {
    width: 438px;
    left: 50%;
    margin-left: -990px;
    top: 430px;
  }
  #index_ct02 #fish_school_right {
    width: 816px;
    left: 50%;
    margin-left: 150px;
    bottom: 185px;
  }
  #index_ct02 .index_ct02_in {
    width: 92%;
    margin: 0 auto;
  }
  #index_ct02 .splide__track {
    max-width: 1200px;
    margin: 0 auto;
  }
  #index_ct02 .splide__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #index_ct02 .splide__list .splide__slide {
    width: 31.333%;
    margin: 20px 0;
    max-width: 361px;
    transition: 0.4s;
  }
  #index_ct02 .splide__list .splide__slide p {
    height: 35%;
    transition: 0.4s;
  }
  #index_ct02 .splide__list .splide__slide:hover {
    opacity: 0.8;
  }
  #index_ct02 .splide__list .splide__slide:hover p {
    color: #04A1E9;
  }
  #index_ct02 .splide__arrows {
    display: none;
  }
  #index_ct03 .index_lead {
    background: #ffffff;
    background: linear-gradient(85deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 35%, rgb(255, 255, 255) 65%, rgba(255, 255, 255, 0) 100%);
    position: relative;
  }
  #index_ct03 .index_lead::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: url("../img/common/back.webp") 60% center;
    background-size: 130%;
    -webkit-mask-image: linear-gradient(85deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 35%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(85deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 35%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
    z-index: 2;
  }
  #index_ct03 .index_lead .index_lead_in {
    padding: 80px 0 220px 0;
  }
  #index_ct03 .index_lead .index_lead_in h2 {
    font-size: 3rem;
  }
  #index_ct03 .index_lead .index_lead_in h2 .en {
    font-size: 1.4rem;
  }
  #index_ct03 .index_lead .index_lead_in p {
    font-size: 1.8rem;
    text-align: center;
  }
  #index_ct03 .index_lead .index_lead_in .mt-1 {
    margin-top: 2em;
  }
  #index_ct03 .index_lead #index_lead_illust_l {
    width: 234px;
    left: -30px;
    top: 90px;
  }
  #index_ct03 .index_lead #index_lead_illust_r {
    width: 202px;
    right: 0;
    bottom: inherit;
    top: 110px;
  }
  #index_ct03 .photo_slide {
    margin-top: -140px;
  }
  #index_ct03 .photo_slide .splide__slide {
    width: 390px !important;
  }
  #index_ct03 .photo_slide .splide__slide img {
    border-radius: 20px;
  }
  .index_photo_btn .cmn_btn {
    margin: 80px auto 60px auto;
  }
  .foot_cmn_illust_front {
    width: 2241px;
    height: 1163px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9;
    pointer-events: none;
  }
  .foot_cmn_illust_front #deep_sea_fish {
    width: 261px;
    margin-left: -570px;
    bottom: 190px;
  }
  .foot_cmn_illust #deep_sea_left {
    width: 367px;
    top: -190px;
    margin-left: -680px;
  }
  .foot_cmn_illust #deep_sea_right {
    width: 750px;
    top: -250px;
    margin-left: 60px;
  }
  #foot_wrap {
    position: relative;
  }
  #foot_wrap #foot_ct01 {
    max-width: 1200px;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding: 70px 0 90px 0;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct {
    flex: 1;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_logo {
    width: 100%;
    text-align: left;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct #foot_info {
    width: 100%;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table {
    width: 100%;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr th {
    font-size: 1.5rem;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr th.zikan_ttl {
    width: 22%;
    padding: 14px 3%;
    text-align: center;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr th:nth-child(2) {
    width: 11%;
    padding-left: 2.5%;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td {
    line-height: 1.6;
    padding-top: 21px;
    padding-bottom: 18px;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td:first-child {
    font-size: 1.5rem;
    width: 32%;
    padding-left: 3%;
    letter-spacing: 0.05em;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td:first-child span {
    display: inline;
    position: absolute;
    right: 9%;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 0px;
    letter-spacing: 0.05em;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td:nth-child(2) img {
    left: 60%;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr td img {
    transform: scale(1) translate(-50%, -50%);
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table table tr.gogo td {
    padding-top: 21px;
    padding-bottom: 18px;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .cap p {
    margin-bottom: 8px;
    line-height: 1.2;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .cap p span {
    top: -0.3em;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption .kyushin {
    margin-top: 15px;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption dl dt {
    font-size: 1.5rem;
    width: 85px;
    height: 25px;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .l_ct .time_table .table_caption dl dd {
    margin-left: 10px;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct {
    width: 578px;
    padding: 30px 0;
    margin-left: 80px;
    margin-top: 0;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct .foot_map {
    width: 527px;
    margin: 0 auto;
  }
  #foot_wrap #foot_ct01 #foot_ct01_in .flex .r_ct .cmn_btn {
    margin-top: 15px;
  }
  #foot_wrap #foot_ct02 {
    background: url(../img/common/footer_back.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 0;
  }
  #foot_wrap #foot_ct02 ul {
    justify-content: center;
  }
  #foot_wrap #foot_ct02 ul li {
    width: auto;
    padding: 0 27px;
  }
  #foot_wrap #foot_ct02 ul li::after {
    height: 40px;
  }
  #foot_wrap #foot_ct02 ul li:nth-child(2n)::after {
    display: block;
  }
  #foot_wrap #foot_ct02 ul li:last-child::after {
    display: none;
  }
  #foot_wrap #foot_ct02 ul li a {
    transition: 0.4s;
  }
  #foot_wrap #foot_ct02 ul li a:hover {
    color: #04A1E9;
  }
  #copy {
    padding-bottom: 30px;
    padding-top: 25px;
  }
  #copy a span {
    transition: 0.4s;
  }
  #copy a:hover {
    color: #04A1E9;
  }
  #copy a:hover span {
    color: #04A1E9;
  }
  .lower .lower_fish_ct #yellow_fish {
    position: absolute;
    top: 800px;
    width: 445px;
    left: 50%;
    margin-left: 310px;
  }
  .lower .lower_fish_ct #fish_school_left {
    position: absolute;
    width: 782px;
    left: 50%;
    margin-left: -980px;
    top: 600px;
  }
  .lower .lower_fish_ct #fish_school_right {
    position: absolute;
    width: 816px;
    left: 50%;
    margin-left: 150px;
    top: 1000px;
  }
  .lower .lower_wrap {
    position: relative;
    z-index: 2;
  }
  .lower_kv .lower_kv_back {
    height: 522px;
    background-size: cover;
    clip-path: ellipse(100% 100% at 50% 0%);
  }
  .lower_kv .lower_kv_in {
    padding-top: 140px;
    padding-bottom: 0;
    width: 92%;
    max-width: 1365px;
    margin: 0 auto;
    display: flex;
  }
  .lower_kv .lower_kv_in .lower_kv_illust {
    flex: 1;
    position: relative;
  }
  .lower_kv .lower_kv_in .lower_kv_illust p {
    line-height: 1;
  }
  .lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_01 {
    width: 98px;
    left: 0%;
    top: 16%;
  }
  .lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_02 {
    width: 241px;
    left: 39%;
    top: 0%;
  }
  .lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_03 {
    width: 101px;
    left: 0%;
    bottom: 15%;
  }
  .lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_04 {
    width: 378px;
    left: 18%;
    bottom: 0;
  }
  .lower_kv .lower_kv_in .lower_kv_illust #lower_kv_illust_05 {
    width: 82px;
    left: 88%;
    bottom: -5px;
  }
  .lower_kv .lower_kv_in .lower_main {
    width: calc(100% - 350px);
    max-width: 980px;
  }
  .lower_kv .lower_kv_in .lower_main picture {
    height: 420px;
    width: 100%;
  }
  .lower_kv .lower_kv_in .lower_main picture img {
    border-radius: 40px;
  }
  .lower_kv .lower_kv_in .lower_ttl {
    margin: 0;
    width: auto;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 8%;
    margin-top: 20px;
    font-size: 4.2rem;
  }
  .lower_kv .lower_kv_in .lower_ttl .en {
    font-size: 2rem;
  }
  .cmn_ttl02 {
    font-size: 4.2rem;
  }
  .lower_nav {
    max-width: 1200px;
    margin: 80px auto 60px auto;
  }
  .lower_nav ul {
    justify-content: center;
  }
  .lower_nav ul li {
    width: inherit;
    margin: 0 5px;
  }
  .lower_nav ul li a {
    font-size: 1.8rem;
    padding: 0 50px 0 40px;
  }
  .lower_nav ul li a::after {
    right: 20px;
    width: 15px;
    height: 15px;
  }
  .lower_nav ul li a:hover {
    animation: bubblePulse_hover 3s infinite ease-in-out;
  }
  .gre::before {
    height: 1200px;
    top: 450px;
    background-position: left;
  }
  .gre #gre_ct01 {
    background: none;
    padding-top: 80px;
  }
  .gre #gre_ct01 .gre_ct01_in {
    width: 821px;
    margin: 0 auto;
  }
  .gre #gre_ct01 .gre_ct01_in .content {
    width: 100%;
  }
  .gre #gre_ct01 .gre_ct01_in .cmn_ttl02 {
    margin-bottom: 60px;
  }
  .gre #gre_ct01 .gre_ct01_in .mt-1 {
    margin-top: 40px;
  }
  .gre #gre_ct02 .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .gre #gre_ct02 .flex .l_ct {
    width: 50%;
  }
  .gre #gre_ct02 .flex .l_ct .profile_photo_box {
    width: 418px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
  }
  .gre #gre_ct02 .flex .l_ct .profile_photo_box .name {
    margin-top: 20px;
  }
  .gre #gre_ct02 .flex .l_ct .profile_photo_box .name dl dd {
    font-size: 5.2rem;
  }
  .gre #gre_ct02 .flex .l_ct .profile_photo_box .name dl dd .en {
    font-size: 2rem;
  }
  .gre #gre_ct02 .flex .l_ct #gre_illust01 {
    width: 198px;
    top: inherit;
    bottom: -79px;
    left: -79px;
  }
  .gre #gre_ct02 .flex .l_ct #gre_illust02 {
    width: 238px;
    top: inherit;
    bottom: -79px;
    right: 10px;
  }
  .gre #gre_ct02 .flex .r_ct {
    flex: 1;
    margin-left: 55px;
    margin-top: 0;
  }
  .gre #gre_ct02 .flex .r_ct dl:first-of-type {
    margin-top: 0;
  }
  .gre #gre_ct02 .flex .r_ct dl:last-of-type .maru_list li {
    display: inline-block;
    margin-right: 50px;
  }
  .gre #gre_ct02 .movie_box {
    width: 780px;
    margin: 70px auto 0 auto;
  }
  .gre #gre_ct02 .movie_box #gre_illust_left {
    width: 290px;
    left: -130px;
    top: -50px;
  }
  .gre #gre_ct02 .movie_box #gre_illust_right {
    width: 290px;
    right: -130px;
    top: -50px;
  }
  .gre #gre_ct02 .movie_box .movie_box_in picture {
    width: 600px;
    margin: 0 auto;
  }
  .gre #gre_ct03 {
    margin: 80px 0 40px 0;
  }
  .gre #gre_ct03 ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .gre #gre_ct03 ul li {
    width: 371px;
    margin-right: 42px;
  }
  .gre #gre_ct03 ul li:nth-child(3n) {
    margin-right: 0;
  }
  .gre #gre_ct04 {
    padding-bottom: 80px;
  }
  .gre #gre_ct04 #gre_illust03 {
    width: 239px;
    left: -20px;
  }
  .gre #gre_ct04 #gre_illust04 {
    width: 368px;
    right: -50px;
    top: 60px;
  }
  .gre #gre_ct04 #gre_illust05 {
    width: 248px;
    bottom: -40px;
    left: -80px;
  }
  .gre #gre_ct04 .gre_ct04_in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
  }
  .gre #gre_ct04 .gre_ct04_in ul {
    width: 800px;
    margin: 40px auto;
  }
  .gre #gre_ct04 .gre_ct04_in ul li {
    font-size: 2rem;
    padding-left: 75px;
    min-height: 70px;
  }
  .gre #gre_ct04 .gre_ct04_in ul li i {
    width: 65px;
  }
  .info #info_ct01 {
    padding-top: 150px;
  }
  .info #info_ct01 .info_ct01_in {
    max-width: 1200px;
    margin: 0 auto;
  }
  .info #info_ct01 .info_ct01_in .medical_care_subjects {
    width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -68px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_subjects dl {
    height: 56px;
    font-size: 2.3rem;
    padding-right: 30px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_subjects #info_ilst01 {
    width: 101px;
    right: -26px;
    bottom: -30px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time {
    margin-top: 40px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table {
    width: 900px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr th {
    font-size: 1.8rem;
    padding: 11px 1%;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr th:first-child {
    text-align: center;
    width: 31%;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr th:nth-child(2) {
    width: 11%;
    padding-left: 4%;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td {
    font-size: 1.8rem;
    padding: 16px 1%;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td:first-child {
    text-align: right;
    padding-right: 6%;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td:first-child span {
    width: 130px;
    font-size: 1.8rem;
    display: inline-block;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td:nth-child(2) img {
    padding-left: 25%;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table table tr td img {
    transform: scale(1) translate(-50%, -50%);
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption {
    margin-top: 20px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p {
    font-size: 1.8rem;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption .cap p i img {
    width: 24px;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption dl {
    font-size: 1.8rem;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption dl dt {
    width: 90px;
    height: 26px;
    font-size: 1.6rem;
  }
  .info #info_ct01 .info_ct01_in .medical_care_time .time_table .table_caption dl dd {
    margin-left: 15px;
  }
  .info #info_ct02 {
    padding-top: 80px;
  }
  .info #info_ct02 h2 {
    font-size: 4.2rem;
    line-height: 1.2;
  }
  .info #info_ct02 .flex {
    display: flex;
    justify-content: space-between;
  }
  .info #info_ct02 .flex .bringing_box {
    width: 295px;
    flex-direction: column;
    padding: 35px;
    margin: 60px auto;
  }
  .info #info_ct02 .flex .bringing_box p {
    width: 149px;
    height: auto;
    margin: 0 auto;
    line-height: 1;
    margin-bottom: 20px;
  }
  .info #info_ct02 .flex .bringing_box dl {
    margin-left: 0;
  }
  .info #info_ct02 .flex .bringing_box dl dt {
    font-size: 2.2rem;
    text-align: center;
  }
  .info #info_ct03 {
    padding-top: 80px;
  }
  .info #info_ct03 .info_ct03_in {
    padding: 80px 0 150px 0;
  }
  .info #info_ct03 .content {
    max-width: 1500px;
  }
  .info #info_ct03 .fit_wrap {
    position: relative;
    width: 96%;
    max-width: 1450px;
    margin: 0 auto;
  }
  .info #info_ct03 .fit_wrap .medical_nav {
    position: absolute;
    top: 0px;
    width: 22%;
    height: 100%;
    z-index: 3;
    background: none;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul {
    width: 100%;
    padding: 40px 0;
    position: sticky;
    top: 100px;
    background: #04A1E9;
    border-radius: 20px;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul li {
    width: 90%;
    margin: 0 auto;
    border-right: none;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul li:nth-child(3) {
    border-bottom: 1px dashed #fff;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul li a {
    transition: 0.4s;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul li a::after {
    margin-top: 3px;
    transform: translate(0, -50%) rotate(-45deg);
    transition: 0.4s;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul li.active a {
    background: #fff;
    color: #04A1E9;
  }
  .info #info_ct03 .fit_wrap .medical_nav ul li.active a::after {
    border-color: #04A1E9;
  }
  .info #info_ct03 .fit_wrap .medical_right {
    width: 73%;
    margin-left: 27%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct {
    padding: 60px 3%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in {
    padding-top: 120px;
    margin-top: -120px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .line_ttl span {
    font-size: 3.5rem;
    padding-left: 70px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .line_ttl span i {
    width: 57px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex {
    display: flex;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex .l_ct {
    flex: 1;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex .l_ct .text {
    width: 94%;
    margin: 0 auto;
    padding-right: 10%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .flex .r_ct {
    width: 336px;
    margin-left: 2%;
    margin-right: 2%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination {
    position: relative;
    margin-top: -40px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination h4 {
    text-align: left;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .line_box {
    margin: 10px 0;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_flex {
    display: flex;
    justify-content: space-between;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_flex .vaccination_l_box {
    width: 62%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_flex .vaccination_r_box {
    width: 19%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box {
    text-align: center;
    padding: 20px 0;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box .bnr {
    width: 468px;
    margin: 20px auto 0 auto;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box .bnr a:hover {
    opacity: 0.7;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .vaccination .vaccination_btm_box #info_ilst03 {
    width: 88px;
    bottom: 5px;
    left: -20px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box {
    margin-top: 20px;
    padding: 30px 40px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex {
    display: flex;
    justify-content: space-between;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .l_ct {
    width: 238px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct {
    flex: 1;
    margin-top: 0;
    margin-left: 4%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dt {
    width: 181px;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dd {
    flex: 1;
    line-height: 1;
    text-align: left;
    margin-left: 4%;
  }
  .info #info_ct03 .fit_wrap .medical_right .medical_ct .medical_in .blue_back_box .blue_back_flex .r_ct dl dd a {
    pointer-events: none;
  }
  .info #info_ct04 {
    margin-bottom: 80px;
  }
  .info #info_ct04 .info_ct04_in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct {
    margin: 50px 0 80px 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct:last-of-type {
    margin-bottom: 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct h3 {
    padding-left: 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct h3 i {
    left: -55px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .flex {
    display: flex;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .flex .l_ct {
    flex: 1;
    padding-left: 60px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .flex .r_ct {
    width: 574px;
    margin-left: 5.1%;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .testing_equipment {
    padding-left: 60px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .white_back {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .white_back .photo {
    width: 210px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .white_back .text {
    flex: 1;
    margin-left: 5%;
    margin-top: 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .white_back .text .table_wrap {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .testing_equipment .white_back .text table {
    width: 98%;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back .text_link:hover {
    color: #EF3669;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back .coral {
    width: 148px;
    right: -70px;
    bottom: -90px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back .two_photo picture {
    width: 47%;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back.other.white_back {
    padding-bottom: 20px;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back.other .two_photo {
    display: flex;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back.other .two_photo picture {
    margin-bottom: 0;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back.other .two_photo picture:first-of-type {
    text-align: center;
  }
  .info #info_ct04 .info_ct04_in .examination_ct .white_back.other .two_photo picture:first-of-type img {
    width: 189px;
  }
  .clinic.lower .lower_fish_ct #yellow_fish {
    z-index: 2;
  }
  .clinic::before {
    height: 1350px;
  }
  .clinic #clinic_ct01 {
    padding-top: 60px;
  }
  .clinic #clinic_ct01 .flex {
    display: flex;
    justify-content: space-between;
  }
  .clinic #clinic_ct01 .flex .l_ct {
    flex: 1;
  }
  .clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl {
    position: relative;
  }
  .clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl h2 {
    font-size: 2rem;
  }
  .clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl h2 .en {
    font-size: 4rem;
  }
  .clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl p.clinic_tour_ilst_l {
    max-width: 120px;
  }
  .clinic #clinic_ct01 .flex .l_ct .clinic_tour_ttl p.clinic_tour_ilst_r {
    width: 82px;
    max-width: 82px;
  }
  .clinic #clinic_ct01 .flex .l_ct h3 {
    margin: 30px 0 20px 0;
  }
  .clinic #clinic_ct01 .flex .r_ct {
    width: 770px;
    margin-left: 40px;
    margin-top: 0;
  }
  .clinic #clinic_ct01 .flex .r_ct p {
    height: 470px;
  }
  .clinic #clinic_ct01 .flex .r_ct p iframe {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
  }
  .clinic #clinic_ct02 {
    padding-bottom: 100px;
    padding-top: 230px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl h2#bb_05 {
    top: 90px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_01 {
    top: 120px;
    margin-left: -270px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_02 {
    top: 110px;
    margin-left: -248px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_03 {
    top: 66px;
    margin-left: -204px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_04 {
    top: 170px;
    margin-left: -192px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_06 {
    width: 32px;
    top: 182px;
    margin-left: 91px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_07 {
    top: 20px;
    margin-left: 37px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_08 {
    top: 45px;
    margin-left: 97px;
  }
  .clinic #clinic_ct02 .clinic_gallery_ttl p#bb_09 {
    width: 32px;
    top: 0px;
    margin-left: 207px;
  }
  .clinic #clinic_ct02 .clinic_ct02_in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 40px 0;
  }
  .clinic #clinic_ct02 .clinic_slide_wrap .content {
    max-width: 1000px;
  }
  .clinic #clinic_ct02 .clinic_slide {
    display: flex;
    flex-direction: column;
  }
  .clinic #clinic_ct02 .thumbBox {
    background: #fff;
    padding: 10px;
    padding-bottom: 0;
  }
  .clinic #clinic_ct02 .thumbBoxCap {
    padding: 10px;
  }
  .faq #faq_ct01, .faq #faq_ct02 {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    z-index: 4;
  }
  .faq #faq_ct01 .cmn_ttl02, .faq #faq_ct02 .cmn_ttl02 {
    margin-bottom: 50px;
  }
  .faq .content {
    padding: 60px 0;
  }
  .faq .faq_ct01_in {
    position: relative;
    z-index: 3;
  }
  .faq .faq_box {
    position: relative;
    z-index: 2;
  }
  .faq .faq_list {
    width: 1070px;
  }
  .faq .faq_list li {
    margin: 30px 0;
  }
  .faq .faq_list a.open_ct span i {
    width: 50px;
    height: 50px;
    left: 35px;
    top: 20px;
    font-size: 4rem;
    padding-bottom: 8px;
  }
  .faq .faq_list a.open_ct:after {
    width: 28px;
    height: 28px;
    right: 2%;
    top: 50%;
    margin-top: -14px;
  }
  .faq .faq_list a.open_ct span {
    line-height: 1.5em;
    font-size: 2.6rem;
    padding: 26px 60px 26px 100px;
  }
  .faq .faq_list .st-content .st_ct_in {
    padding: 0 70px 50px 100px;
  }
  .faq .faq_list .st-content .st_ct_in p {
    line-height: 2;
    font-size: 1.8rem;
  }
  .faq .faq_list .st-content .st_ct_in i {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 35px;
    top: -7px;
  }
  .faq .faq_list .st-content .st_ct_in .flex {
    display: flex;
    justify-content: space-between;
  }
  .faq .faq_list .st-content .st_ct_in .flex .txt {
    flex: 1;
  }
  .faq .faq_list .st-content .st_ct_in .flex .image {
    width: 291px;
    margin-top: 0;
  }
  .faq .faq_list .st-content .st_ct_in .yoyaku_btn a:hover {
    color: #EF3669;
    background: #fceef2;
  }
  .faq.lower .lower_fish_ct #faq_illust01 {
    position: absolute;
    top: 1250px;
    left: 50%;
    margin-left: -810px;
  }
  .faq.lower .lower_fish_ct #faq_illust02 {
    position: absolute;
    top: 1500px;
    left: 50%;
    margin-left: -900px;
  }
  .faq.lower .lower_fish_ct #faq_illust03 {
    position: absolute;
    top: 1120px;
    left: 50%;
    margin-left: 490px;
  }
  .faq.lower .lower_fish_ct #faq_illust04 {
    position: absolute;
    top: 1450px;
    left: 50%;
    margin-left: 530px;
    opacity: 0.8;
  }
  #acc_ct01 {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 70px;
  }
  #acc_ct01 .acc_ct01_01::before {
    height: calc(100% - 108px);
    top: 70px;
    width: 1100px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  #acc_ct01 .acc_ct01_01 .acc_lead {
    padding-left: 180px;
    z-index: 3;
    position: relative;
  }
  #acc_ct01 .acc_ct01_01 .acc_lead .acc_dolphin {
    width: 87px;
    left: 70px;
    top: 3px;
  }
  #acc_ct01 .acc_ct01_01 .acc_lead h2 {
    font-size: 3.5rem;
  }
  #acc_ct01 .acc_ct01_01 .acc_lead p:not(.acc_dolphin) {
    width: 360px;
    height: 56px;
    font-size: 2.3rem;
  }
  #acc_ct01 .acc_ct01_01 .acc_lead p:not(.acc_dolphin) span {
    font-size: 2.9rem;
  }
  #acc_ct01 .acc_ct01_01 .acc_lead p:not(.acc_dolphin) img {
    width: 50px;
    right: 20px;
  }
  #acc_ct01 .acc_ct01_01 .acc_box {
    margin-top: -20px;
  }
  #acc_ct01 .acc_ct01_01 .acc_box .acc_map {
    text-align: center;
  }
  #acc_ct01 .acc_ct01_01 .acc_box #acc_shellfish {
    width: 95px;
    left: inherit;
    right: 50px;
    top: -80px;
  }
  #acc_ct01 .acc_ct01_02 .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #acc_ct01 .acc_ct01_02 .flex .l_ct {
    flex: 1;
    height: 100%;
    margin-top: 0;
  }
  #acc_ct01 .acc_ct01_02 .flex .l_ct p#bubble_photo01 {
    width: 453px;
    left: -100px;
    top: 0;
  }
  #acc_ct01 .acc_ct01_02 .flex .l_ct p#bubble_photo02 {
    width: 173px;
    top: 120px;
  }
  #acc_ct01 .acc_ct01_02 .flex .l_ct p#bubble_photo03 {
    width: 291px;
    top: 350px;
    right: -8px;
  }
  #acc_ct01 .acc_ct01_02 .flex .l_ct p#acc_squid {
    width: 165px;
    top: 75px;
  }
  #acc_ct01 .acc_ct01_02 .flex .r_ct {
    width: 463px;
    margin: 40px 0 50px 60px;
  }
  #acc_ct01 .acc_ct01_02 .flex .r_ct a {
    pointer-events: none;
  }
  #acc_ct01 .acc_ct01_02 .flex .r_ct .traffic_method {
    margin-top: 40px;
  }
  #acc_ct02 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  #acc_ct02 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto;
  }
  #acc_ct02 ul li {
    width: 549px;
  }
  #news_ct1 {
    padding-top: 180px;
    padding-bottom: 80px;
  }
  #news_ct1 .content {
    width: 1000px;
  }
  #news_ct1 #post_ttl h3 {
    font-size: 3rem;
  }
  #news_ct1 #back_info_list {
    margin-top: 80px;
  }
  .side_nav {
    position: fixed;
    right: 1%;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 98;
  }
  .side_nav ul li {
    width: 65px;
    margin: 5px 0;
    position: relative;
    left: 58px;
  }
  .side_nav ul li a img {
    transition: transform 0.2s;
  }
  .side_nav ul li a:hover img {
    animation: bubblePulse_hover 3s infinite ease-in-out;
  }
  .side_nav ul li.kamesan {
    width: 123px;
    left: 0;
    margin-top: 10px;
  }
  .home .side_nav ul li {
    left: 0;
  }
  .home .side_nav ul li.kamesan {
    display: none;
  }
}
/*-- アニメーション --*/
@keyframes bubblePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}
@keyframes bubblePulse_hover {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}
.bubble {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: rgba(217, 232, 240, 0.3);
  width: var(--size, 10px);
  height: var(--size, 10px);
  left: var(--left, 0%);
  pointer-events: none;
  animation: floatUpFade linear infinite;
}

/* 浮上 + フェードイン */
@keyframes floatUpFade {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  10% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-500px) scale(0.8);
    opacity: 0;
  }
}
@media screen and (min-width: 640px) {
  @keyframes floatUpFade {
    0% {
      transform: translateY(0) scale(0.5);
      opacity: 0;
    }
    10% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateY(-1400px) scale(0.8);
      opacity: 0;
    }
  }
}
@media screen and (max-width: 375px) {
  .ssp_only {
    display: block;
  }
}
/*------ IEズレ調整 -----*//*# sourceMappingURL=style.css.map */