@charset "UTF-8";
/*----------------------------------------------------------------------
base
----------------------------------------------------------------------*/
html {
  min-width: 320px;
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3b3b3b;
  margin: 0;
}

.col1 {
  width: 5.9829%;
}

.col2 {
  width: 14.5299%;
}

.col3 {
  width: 23.0769%;
}

.col4 {
  width: 31.6239%;
}

.col5 {
  width: 40.1709%;
}

.col6 {
  width: 48.7179%;
}

.col7 {
  width: 57.2649%;
}

.col8 {
  width: 65.8119%;
}

.col9 {
  width: 74.3589%;
}

.col10 {
  width: 82.9059%;
}

.col11 {
  width: 91.4529%;
}

.col12 {
  width: 100%;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.xsmall {
  font-size: 8px;
}

.small {
  font-size: 12px;
}

.large {
  font-size: 20px;
}

.xlarge {
  font-size: 24px;
}

img {
  max-width: 100%;
  display: block;
  margin: auto;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-out;
}

a:hover {
  opacity: 0.7;
}

span.big {
  font-size: 30px;
}

span.red {
  color: #ff3333;
  font-weight: bold;
}

table {
  border-collapse: collapse;
}

dh {
  color: #555;
  font-size: 20px;
  font-weight: bold;
}

.flr {
  float: right;
}

.fll {
  float: left;
}

/* For modern browsers */
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

li {
  list-style-type: none;
}

ul {
  padding-left: 0;
}

p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

/*------------------パンくずリスト------------*/
/*----------------------------------------------------------------------
header
----------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  height: 0;
  width: 100%;
  z-index: 50;
}

.godzilla_top {
  color: #fff;
  font-family: "Roboto";
  font-size: 2.2rem;
  line-height: 1.31;
  width: 132px;
  display: block;
  position: absolute;
  top: 32px;
  left: 2.1%;
}
.godzilla_top span {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.31;
  letter-spacing: 0.07em;
  text-align: justify;

  font-weight: normal;
  text-justify: inter-ideograph;
}

.header_menu {
  width: 87.84%;
  margin: 0 auto;
}
.header_menu ul {
  display: flex;
  justify-content: end;
}
.header_menu ul li {
  list-style: none;
}
.header_menu ul li a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 32px 12.5px 19px 12.5px;
  display: inline-block;
}
.header_menu ul li a.header_inquiry {
  display: inline-block;
  padding: 32px 25px 19px 25px;
  background-color: #73b819;
}

/* ハンバーガーメニュー */
/*----------------------------------------------------------------------
ハンバーガーメニュー
----------------------------------------------------------------------*/
/* 
hamburger(ハンバーガーアイコン)
=================================== */
#nav-wrapper {
  position: fixed;
  top: 32px;
  right: 30px;
  display: none;
}

.hamburger {
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 300;
  position: relative;
}

.hamburger__line {
  display: block;
  width: 25px;
  height: 2px;
  position: absolute;
  background-color: #fff;
  transition: all 0.5s ease-out;
}

.hamburger__line.blue {
  background-color: #007cc2;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 7px;
}

.hamburger__line--3 {
  top: 13px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line {
  background-color: #000;
}

.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 40%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.sp-nav ul {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sp-nav ul li {
  font-size: 2.5rem;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}

.sp-nav ul li a {
  color: #000;
  text-decoration: none;
}

.sp-nav ul li a img {
  width: 80%;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

@media screen and (max-width: 960px) {
  .sp-nav {
    width: 100%;
  }
}
@media screen and (max-width: 720px) {
  .header_logo {
    width: 50%;
  }
  .nav_wrapper {
    padding-top: 6px;
  }
}
/*----------------------------------------------------------------------
main
----------------------------------------------------------------------*/
.top {
  width: 100%;
  background-image: url(./images/utoro_x2.png);
  background-position: center;
  background-size: cover;
  border-radius: 0 0 7.5% 0;
  position: relative;
  padding-bottom: 367px;
}

.top_wrapper {
  width: 88%;
  padding-top: 263px;
  margin: 0 auto 0 9%;
}
.top_wrapper .top_catch {
  font-family: "Montserrat";
  font-size: 4rem;
  line-height: 1.225em;
  letter-spacing: 0.1em;
  color: #fff;
}
.top_wrapper .top_catch.catch_up {
  width: 19.9%;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.top_wrapper .top_sub {
  color: #fff;
  font-size: 1.3rem;
  font-weight: light;
  margin-top: 20px;
}
.top_wrapper a {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 24px 22px;
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
  box-sizing: border-box;
  line-height: 1.46;
  margin-top: 30px;
  position: relative;
}
.top_wrapper a::after {
  content: "";
  height: 1px;
  width: 80px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 70px;
}

.todays_status {
  width: 70%;
  max-width: 960px;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 8px;
  background: linear-gradient(45deg, #73b819 0%, #ace363 100%);
  position: absolute;
  left: 9%;
  bottom: -34%;
  z-index: 10;
}
.todays_status.todays_winter {
  background: linear-gradient(230deg, #63e3e3 0%, #1e8fc1 100%);
}

.status_header {
  display: flex;
  justify-content: space-between;
}
.status_header p {
  font-size: 1.9rem;
  font-weight: bold;
}
.status_header p span {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.31;
  vertical-align: baseline;
  padding-right: 6px;
}
.status_header .standard {
  display: flex;
  flex-wrap: wrap;
}
.status_header .standard .standard_left {
  font-size: 1.4rem;
  padding: 10px 30px;
  border: 1px solid #4e4e4e;
  align-self: flex-start;
}
.status_header .standard .standard_right {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.35;
}

.status_box_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.status_box {
  width: 47.75%;
  max-width: 590px;
  box-sizing: border-box;
  padding: 0 20px 15px 20px;
  background-color: #fff;
  border-radius: 20px;
}
.status_box .status_title {
  display: flex;
  justify-content: space-between;
}
.status_box .course_title {
  padding-top: 16px;
  padding-bottom: 15px;
  width: 117px;
  background-color: #4e4e4e;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
.status_box .season_title {
  text-align: end;
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  justify-content: end;
  align-self: flex-end;
}
.status_box .season_title span {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: normal;
  margin-right: 5px;
}
.status_box .schedule {
  font-size: 1.2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px #4e4e4e solid;
  border-bottom: 1px #4e4e4e solid;
  margin-top: 15px;
}
.status_box .schedule span {
  display: inline-block;
  margin-left: 4em;
}
.status_box .tour_category {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}
.status_box .status_flex {
  display: flex;
  justify-content: space-between;
}
.status_box .status_wrapper {
  width: 30%;
}
.status_box .status_wrapper.fullwidth {
  width: 100%;
}
.status_box .status_course {
  width: 100%;
  font-size: 1.2rem;
  background-color: #d8d8d8;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  box-sizing: border-box;
}
.status_box .status_detail {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.status_box .status_time {
  font-size: 1.3rem;
  font-weight: bold;
}
.status_box .status_info {
  font-size: 1.4rem;
  font-weight: bold;
}
.status_box .status_info.no_service {
  color: #de584d;
}
.status_box .status_note {
  text-align: end;
  font-size: 1rem;
  margin-top: 5px;
  padding-bottom: 6px;
  border-bottom: 1px solid #a3a3a3;
}
.status_box .status_note.no_service {
  color: #de584d;
}

.activities {
  margin-top: 400px;
}

.section_subtitle {
  font-size: 1.3rem;
  color: #73b819;
}

.section_title {
  font-size: 5rem;
  font-weight: bold;
  color: #73b819;
  font-family: "Montserrat";
  line-height: 1.22;
  margin-top: 8px;
}

.inner_wrapper {
  margin: 0 auto;
  padding: 0 9%;
  max-width: 1127px;
}

.activities_wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.activities_wrapper a {
  width: 48%;
}
.activities_wrapper a img {
  width: 100%;
}

.news_and_sns {
  padding: 150px 0 136px 0;
}

.news_and_sns_wrapper {
  display: flex;
  justify-content: space-between;
}

.news ul {
  margin-top: 48px;
}
.news ul li {
  padding-top: 14px;
  border-top: 1px solid #777777;
  padding-bottom: 14px;
}
.news ul li:first-child {
  border-top: none;
}
.news ul li .date {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Roboto";
}
.news ul li .tag {
  font-size: 1.3rem;
  color: #fff;
  background-color: #73b819;
  width: 96px;
  padding: 9px 0;
  display: inline-block;
  margin-left: 15px;
  text-align: center;
}
.news ul li a {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: 25px;
}
.news ul li a.blog_box {
  display: flex;
  font-size: unset;
  margin-left: 0;
}
.news .view_more {
  font-size: 1.6rem;
  width: 214px;
  color: #fff;
  background-color: #73b819;
  display: block;
  padding: 20px 0;
  text-align: center;
  border-radius: 7px;
  margin: 30px 0 auto auto;
}

.sns {
  width: 30%;
}
.sns .section_subtitle,
.sns .section_title {
  text-align: end;
}

.safe {
  background: linear-gradient(45deg, #73b819 0%, #ace363 100%);
  border-radius: 7.5% 0 0 0;
  position: relative;
  padding: 148px 0 128px 0;
  text-align: center;
}
.safe::before {
  display: block;
  width: 164px;
  content: "";
  height: 137px;
  background: url("./images/green_rightup.svg");
  position: absolute;
  top: 0%;
  right: 0;
  transform: translateY(-99%);
}
.safe::after {
  display: block;
  width: 164px;
  content: "";
  height: 137px;
  background: url("./images/green_leftdown.png");
  position: absolute;
  bottom: 0%;
  left: 0;
  transform: translateY(99%);
}

.safe_subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Roboto";
}

.safe_title {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 14px;
  font-family: "Roboto";
}

.safe_section_title {
  margin-top: 55px;
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  border: 1px solid #2a2b2a;
  padding: 10px 40px;
  font-family: "Roboto";
}

.safe_desc {
  font-family: "Roboto";
  font-size: 1.8rem;
  line-height: 1.333;
  margin: 28px auto 0 auto;
  width: 80%;
  max-width: 725px;
}

.safe_section_subtitle {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 2rem;
  margin: 28px auto 0 auto;
  width: 80%;
  max-width: 725px;
}

.safe_desc_2 {
  font-family: "Roboto";
  font-size: 1.6rem;
  line-height: 1.333;
  margin: 20px auto 0 auto;
  width: 80%;
  max-width: 725px;
}

.ships {
  margin-top: 122px;
  display: flex;
  justify-content: space-between;
}
.ships li {
  width: 30.8%;
}
.ships li p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.ships_top {
  font-size: 1.5rem;
  margin-top: 40px;
}

.ships_title {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 15px;
}

.ships_desc {
  font-size: 1.5rem;
  line-height: 1.73333;
  margin-top: 15px;
}

.ships_view_more {
  width: 230px;
  display: block;
  padding: 20px 0;
  background-color: #fff;
  color: #73b819;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 7px;
  margin: 30px auto 0 auto;
}

.pension {
  background-color: #3b3b3b;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.pension_wrapper {
  background-image: url("./images/pension.png");
  padding-top: 198px;
  padding-bottom: 182px;
  background-repeat: no-repeat;
  background-size: cover;
}

.pension_subtitle {
  font-size: 1.3rem;
  font-family: "Roboto";
  font-weight: 300;
}

.pension_title {
  font-size: 3rem;
  font-family: "Montserrat";
  font-weight: 600;
  margin-top: 9px;
}

.pension_catch {
  font-family: "Roboto";
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 35px;
}

.pension_desc {
  font-size: 1.4rem;
  font-family: "Roboto";
  margin-top: 13px;
  line-height: 1.571;
}

.pension_view_more {
  color: #fff;
  background-color: #73b819;
}

.pension_img_wrapper {
  display: flex;
  gap: 40px;
  transform: translateX(9%) translateY(-90px);
}

.pension_img {
  width: 23.8%;
}
.pension_img img {
  width: 100%;
  max-width: none;
}

.set_plan {
  position: relative;
  padding-bottom: 120px;
}
.set_plan::before {
  display: block;
  width: 164px;
  content: "";
  height: 137px;
  background: url("./images/black_rightup.png");
  position: absolute;
  top: 0%;
  right: 0;
}
.child_page .set_plan::before {
  display: none;
}
.set_plan .set_illust {
  width: 100%;
}
.set_plan .set_illust img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .set_illust {
    margin: 0 0 80px 0;
  }
}

.set_plan .section_subtitle {
  margin: 71px auto 0 auto;
  display: block;
  text-align: center;
}
.set_plan .section_title {
  text-align: center;
}
.set_plan .setplan_desc {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6875;
  margin-top: 46px;
}
.set_plan .setplan_date {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 50px;
}
.set_plan .setplan_date span {
  font-weight: bold;
  font-size: 2.6rem;
}

.setplan_wrapper {
  margin: 60px auto 0 auto;
}
.setplan_wrapper.setplan_down {
  margin-top: 96px;
}
.setplan_wrapper .setplan_title {
  font-size: 2.5rem;
  line-height: 1.12;
  font-weight: bold;
  text-align: center;
}
.setplan_wrapper .setplan_box_wrapper {
  margin: 25px auto 0 auto;
  max-width: 906px;
  width: 66.32%;
  display: flex;
  justify-content: space-between;
}
.setplan_wrapper .setplan_box {
  width: 48%;
  background-color: #b7e174;
  border-radius: 10px;
  padding: 40px 0 30px 0;
}
.setplan_wrapper .setplan_box_title {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.setplan_wrapper .setplan_desc_box {
  width: 86.3%;
  background-color: #fff;
  margin: 5px auto 0 auto;
  padding: 20px 30px;
  box-sizing: border-box;
}
.setplan_wrapper .setplan_desc_wrapper {
  display: flex;
  justify-content: space-between;
}
.setplan_wrapper .setplan_desc_wrapper .setplan_desc_left {
  font-size: 1.3rem;
}
.setplan_wrapper .setplan_desc_wrapper .setplan_desc_right {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: end;
}
.setplan_wrapper .setplan_desc_wrapper .setplan_desc_right .sm {
  font-size: 1.2rem;
  font-weight: normal;
  display: inline-block;
  margin-top: 5px;
}
.setplan_wrapper .setplan_desc_wrapper.desc_box_down {
  margin-top: 16px;
}
.setplan_wrapper .view_detail {
  background-color: #fff;
  display: block;
  width: 54%;
  margin: 15px auto 0 auto;
  border-radius: 25px;
  padding: 17px 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
}
.setplan_wrapper .reserve {
  display: block;
  width: 54%;
  margin: 15px auto 0 auto;
  border-radius: 25px;
  padding: 17px 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
  background-color: #73b819;
  color: #fff;
}

.setplan_view_detail {
  margin: 120px auto 0 auto;
  font-size: 1.6rem;
  font-family: "Roboto";
  width: 230px;
  border-radius: 7px;
  background-color: #73b819;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}

.qa {
  background-color: #d8d8d8;
  padding: 70px 0 117px 0;
}
.qa .section_title {
  text-align: center;
  font-family: "Roboto";
}
.qa .section_subtitle {
  display: block;
  text-align: center;
}
.qa h3 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 90px;
}
.qa .qa_link_wrapper {
  max-width: 807px;
  width: 80%;
  margin: 22px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 15px;
}
.qa .qa_link_wrapper .qa_link {
  background-color: #73b819;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  width: 46.2%;
  padding: 30px 0 28px 0;
  text-align: center;
}

.banner_p {
  margin-top: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.top_banner {
  display: block;
  max-width: 807px;
  width: 80%;
  margin: 15px auto 50px auto;
}

.accordion {
  width: 100%;
  margin: 60px auto 0 auto;
  max-width: 807px;
  width: 80%;
}

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

/* 見出しボタン部分 */
.accordion-open {
  display: block;
  padding: 10px 80px 10px 10px;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
  font-size: 2.2rem;
}

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

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

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

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  line-height: 1.2;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
  font-size: 2.2rem;
}
.accordion-inner strong {
  font-weight: bold;
}
.accordion-inner a {
  text-decoration: underline;
}

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

/* ↑ここまで共通 */
/* Q&A追加 */
.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #73b819;
  left: -1.8em;
  border-radius: 2px;
  color: #fff;
  padding: 1px 11px 8px 11px;
}

.accordion_qa .Q::before {
  content: "Q";
}

.accordion_qa .A::before {
  content: "A";
  background-color: unset;
  color: #3b3b3b;
  left: -1.7em;
}

.accordion_qa .accordion-open {
  padding-left: 2.5em;
}

.accordion_qa .accordion-hidden:checked + .accordion-open + .accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 2.5em;
}

/* Q&A追加ここまで */
.gm_wrapper {
  display: flex;
}
.gm_wrapper iframe {
  width: 50%;
  aspect-ratio: 683/365;
}

footer {
  background-color: #ace363;
}
footer .footer_title {
  font-size: 2.2rem;
  margin: 60px auto 0 auto;
  text-align: center;
  font-weight: bold;
}
footer .footer_title span {
  font-size: 1rem;
  font-family: "Roboto";
  font-weight: normal;
  letter-spacing: 0.07em;
}
footer .footer_menu_wrapper {
  margin: 50px auto 0 auto;
  width: 80%;
  max-width: 587px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
footer .footer_menu_wrapper a {
  font-size: 1.8rem;
  font-family: "Roboto";
  font-weight: bold;
}
footer .footer_menu_wrapper a.inquiry {
  font-size: 1.5rem;
  color: #fff;
  background-color: #73b819;
  width: 24.7%;
  padding: 17px 0;
  text-align: center;
}
footer .footer_link_wrapper_1 {
  margin: 8px auto 0 auto;
  width: 80%;
  max-width: 587px;
}
footer .footer_link_wrapper_1 a {
  font-size: 1.5rem;
  font-family: "Roboto";
  display: inline-block;
  margin-right: 25px;
}
footer .footer_link_wrapper_2 {
  display: flex;
  justify-content: space-between;
  margin-top: 127px;
}
footer .footer_link_wrapper_2 .footer_link_left {
  display: flex;
  width: 6%;
  justify-content: space-between;
}
footer .footer_link_wrapper_2 .footer_link_center {
  font-size: 1.5rem;
  font-family: "Roboto";
  display: flex;
  justify-content: space-between;
  width: 46.9%;
  min-width: 488px;
}
footer .footer_link_wrapper_2 .footer_link_right {
  font-size: 1.5rem;
  font-family: "Roboto";
  display: flex;
  justify-content: space-between;
  width: 9.3%;
  font-weight: medium;
}
footer .copyright {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #73b819;
  text-align: center;
  padding: 19px 0 20px 0;
  margin-top: 60px;
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
下層ページ
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------

media query

----------------------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .sp-only {
    display: block;
  }
  .mmb-10 {
    margin-bottom: 10px;
  }
  .mmb-20 {
    margin-bottom: 20px;
  }
  .mmb-30 {
    margin-bottom: 30px;
  }
  .mmb-40 {
    margin-bottom: 40px;
  }
  .splogo {
    display: inline-block;
  }
}
/*media queryここまで*/
/*----------------------------------------------------------------------
ウトロページ
----------------------------------------------------------------------*/
.child_page .top {
  background-image: url("./images/utoro_top.png");
  min-height: 90vh;
  position: relative;
}
.child_page.utoro_page .top {
  border-radius: 0;
}
.child_page .top.news_top {
  background-image: url("./images/news_top.png");
  min-height: 20vh;
}
.child_page .top.company_page {
  background-image: url("./images/about_us_bg.png");
}
.child_page .top .child_page_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}
.child_page .top .child_page_title .sub {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.child_page .top .child_page_title .title {
  font-size: 6rem;
  font-family: "Montserrat";
  letter-spacing: 0.25em;
  line-height: 1.21;
  transform: translateX(4%);
}
.child_page .top .top_season_link {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 6%;
  transform: translateY(50%);
  width: 82%;
  max-width: 1120px;
}
.child_page .top .top_season_link .season_link {
  margin-right: 30px;
  transition: 0.3s ease-out;
}
.child_page .top .top_season_link .season_link:hover {
  opacity: 1;
  transform: translateY(-5%) scale(1.05);
}
.child_page .todays_status {
  position: relative;
}
.child_page .child_page_h2 {
  padding-top: 180px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
.child_page .child_page_h2 span {
  font-family: "Montserrat";
  font-size: 5rem;
  line-height: 1.22;
  margin-top: 8px;
}
.child_page .child_page_catch {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 3rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.child_page .child_page_catch::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: url("./images/underline_or.svg");
  background-repeat: no-repeat;
  left: 0;
  bottom: -25px;
  background-position: center;
  background-size: cover;
}
.child_page .child_page_h3 {
  color: #f79662;
  font-size: 1.8rem;
  margin-top: 35px;
  text-align: center;
  font-weight: bold;
}
.child_page .child_page_todays_status {
  margin-top: 60px;
}
.child_page .child_page_todays_status .status_header {
  text-align: center;
  display: block;
}
.child_page .status_box_wrapper {
  display: block;
}
.child_page .status_box_wrapper .status_box {
  margin: 0 auto;
}
.child_page .three_plan_wrapper .setplan_box {
  width: 32.6%;
}
.child_page .two_plan_wrapper .setpllan_box {
  width: 48%;
}
.child_page .course_detail {
  width: 82.5%;
  max-width: 1126px;
  margin: 60px auto 0 auto;
  border: 1px solid #73b819;
  border-radius: 15px;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.child_page .course_left {
  width: 50%;
}
.child_page .course_subtitle {
  font-size: 1.6rem;
}
.child_page .course_h3 {
  font-size: 3rem;
  color: #73b819;
  margin-top: 8px;
  font-weight: bold;
}

.catch_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.course_h3 .course_catch {
  color: #3b3b3b;
  font-size: 1.4rem;
  font-weight: 500;
}

.child_page .course_image_box {
  margin-top: 20px;
}
.child_page .course_image_box img {
  width: 100%;
  max-width: none;
}
.child_page .course_image_down_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.child_page .course_image_down_wrapper .course_image_down {
  width: 48%;
  margin-top: 10px;
}
.child_page .course_right {
  width: 46%;
}
.child_page .book_course {
  width: 280px;
  box-sizing: border-box;
  background-color: #73b819;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  text-align: center;
  padding: 18px 44px;
  margin: 0 0 0 auto;
  align-items: center;
}
.child_page .book_course::before {
  width: 2em;
  height: 1em;
  content: "";
  background-image: url(./images/book_open.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.child_page .course_fee {
  padding: 30px;
  border: 1px solid #73b819;
  border-radius: 11px;
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.child_page .course_fee .fee_row {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  color: #73b819;
  align-items: center;
}
.child_page .course_fee .fee_row.fee_down {
  margin-top: 10px;
}
.child_page .course_fee .fee_row .fee {
  font-size: 2.4rem;
  margin-left: 1em;
}
.child_page .detail_wrapper {
  display: flex;
  border-bottom: 1px solid #73b819;
  padding: 15px 0;
  align-items: center;
}
.child_page .detail_wrapper .detail_title {
  font-size: 1.4rem;
  font-weight: bold;
  width: 8em;
}
.child_page .detail_wrapper:first-child {
  margin-top: 30px;
}
.child_page .detail_wrapper .detail_right {
  font-size: 1.8rem;
  line-height: 1.72;
}
.child_page .detail_notice {
  font-size: 1.3rem;
  line-height: 1.769;
}
.child_page .detail_notice.first_notice {
  margin-top: 15px;
}

.higuma_data {
  padding: 119px 84px 0 84px;
  text-align: center;
}

.booking_info {
  padding: 100px 0 96px 0;
  text-align: center;
}

.book_link {
  width: 280px;
  box-sizing: border-box;
  background-color: #73b819;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 18px 44px;
  margin: 15px auto 0 auto;
}
.book_link::before {
  width: 2em;
  height: 1em;
  content: "";
  background-image: url(./images/book_open.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.out_season {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #4e4e4e;
  padding: 20px 0;
  width: 430px;
  text-align: center;
  margin: 10px auto 0 auto;
}

.setplan_box_subtitle {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.winter {
  background: linear-gradient(230deg, #63e3e3 0%, #1e8fc1 100%);
  border-radius: 0 150px 0 0;
  padding-bottom: 120px;
}
.winter .child_page_catch::after {
  background-image: url("./images/underline_gl.svg");
}
.winter .child_page_h3 {
  color: #3b3b3b;
}
.winter .setplan_box {
  background-color: #fff;
}
.winter .setplan_desc_box {
  background-color: #63e3e3;
}
.winter .view_detail {
  border: 1px solid #09b7b7;
  color: #09b7b7;
}
.winter .reserve {
  color: #fff;
  background-color: #09b7b7;
}
.winter .course_detail {
  background-color: #fff;
  border: 1px solid #fff;
}
.winter .course_h3 {
  color: #09b7b7;
}
.winter .book_course {
  background-color: #09b7b7;
}
.winter .course_fee {
  border-color: #09b7b7;
}
.winter .course_fee .fee_row {
  color: #09b7b7;
}
.winter .detail_wrapper {
  border-color: #09b7b7;
}
.winter .ryuhyo_notice {
  font-size: 1.6rem;
  color: #de584d;
  font-weight: bold;
  margin-top: 30px;
  line-height: 1.68;
}
.winter .unkou_notice {
  font-size: 1.4rem;
}
.winter .requirement .requirement_title {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: bold;
}
.winter .requirement .requirement_desc {
  line-height: 1.714;
  font-size: 1.4rem;
}
.winter .detail_schedule {
  margin-top: 50px;
  padding: 30px 33px;
  border: 1px solid #707070;
  font-weight: bold;
}
.winter .detail_schedule .detail_schedule_title {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.winter .detail_schedule .detail_schedule_line {
  font-size: 1.4rem;
  margin-bottom: 30px;
  display: flex;
  position: relative;
}
.winter .detail_schedule .detail_schedule_line::before {
  content: "";
  background-image: url("./images/schedule_circle.svg");
  width: 1em;
  height: 1em;
  display: block;
  margin-right: 1em;
}
.winter .detail_schedule .detail_schedule_line::after {
  content: "";
  height: 2.5em;
  width: 1em;
  border-left: 1px solid #09b7b7;
  display: block;
  position: absolute;
  top: 1em;
  left: 0.5em;
}
.winter .detail_schedule .detail_schedule_line:last-child::after {
  display: none;
}

.weather {
  width: 82.5%;
  margin: 100px auto 0 auto;
  background-color: #fff;
  max-width: 1126px;
  padding: 60px 80px;
}
.weather .weather_wrapper {
  display: flex;
  justify-content: space-between;
}
.weather .utoro_weather {
  width: 46%;
}
.weather .progress_bar {
  width: 46%;
}
.weather .weather_title {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
}
.weather .weather_link {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0 auto;
  width: 58%;
}
.weather .weather_link a {
  display: block;
  width: 280px;
  height: 54px;
  text-align: center;
  color: #fff;
  line-height: 54px;
  background-color: #3d9be9;
  font-size: 1.4rem;
}

.set_course .section_subtitle {
  color: #3b3b3b;
}
.set_course .section_title {
  color: #3b3b3b;
}
.set_course::before {
  display: none;
}

.childpage_sns {
  padding: 40px 5% 150px 5%;
}
.childpage_sns .section_title {
  text-align: center;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  font-size: 1.3rem;
}

.cell-color-1 {
  background-color: #b7e174; /* かなり薄い青 */
  color: #fff;
}

.cell-color-2 {
  background-color: #73b819;
  color: #fff;
}

.animal_title {
  font-size: 3rem;
  margin-bottom: 60px;
}

.animal_notice {
  font-size: 2rem;
  margin-top: 15px;
  line-height: 1.5;
  color: crimson;
}

.booking_area {
  padding: 100px;
  max-width: 900px;
}

.courseCostPanel .minimumCharge,
.courseCostPanel .toCharge {
  display: none;
}

#booking-package_inputFormPanel .returnButton {
  background-color: #73b819;
  color: #fff;
  font-weight: bold;
  padding: 1em;
  border: none;
}

#booking-package_inputFormPanel .reservationHeader {
  padding-bottom: 3em;
}
#booking-package_inputFormPanel .row {
  padding: 20px 10px !important;
}
#booking-package_inputFormPanel .name {
  font-size: 1.1em;
  font-weight: bold !important;
  padding-bottom: 10px;
}
#booking-package_inputFormPanel .plan_name {
  line-height: 1.3;
}
#booking-package_inputFormPanel .description {
  line-height: 1.2;
}

.rausu.child_page .top {
  background-image: url(./images/rausu_top_2.png);
}
.rausu.child_page .status_box .status_wrapper {
  width: 100%;
}
.rausu.child_page .status_box .status_wrapper.rausu_winter {
  width: 47%;
}
.rausu.child_page .course_h3 {
  white-space: nowrap;
}
.rausu.child_page .winter .child_page_catch::after {
  background-image: url(./images/rausu_underline.svg);
}
.rausu.child_page
  .setplan_wrapper
  .setplan_desc_wrapper
  .setplan_desc_right
  span {
  font-size: 1rem;
  font-weight: normal;
}
.rausu.child_page .fee_right {
  text-align: end;
}
.rausu.child_page .camera {
  font-size: 1.2rem;
  font-weight: normal;
  color: #3b3b3b;
  display: inline-block;
  margin-top: 4px;
}

.price_note {
  font-size: 1.2rem;
  font-weight: normal;
  color: #3b3b3b;
  width: fit-content;
  display: block;
  margin: 4px 0 0 auto;
}

.rausu.child_page .requirement_area {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.714;
}
.rausu.child_page .requirement_area span {
  font-size: 1.5rem;
  font-weight: bold;
}

.qa_page.child_page .top {
  background-image: url(./images/utoro_x2.png);
}
.qa_page.child_page .qa {
  background-color: #fff;
}
.qa_page.child_page .qa_head_wrapper {
  width: 80%;
  margin: 0 auto;
  max-width: 807px;
}
.qa_page.child_page .qa_head_wrapper .qa_head {
  font-size: 3rem;
  font-weight: bold;
  color: #73b819;
  text-align: center;
  margin-top: 200px;
}
.qa_page.child_page .qa_head_wrapper .qa_head.shiretoko_head {
  margin-top: 80px;
}
.qa_page.child_page .qa_head_wrapper .qa_subhead {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 60px;
}
.qa_page.child_page .accordion {
  margin-top: 27px;
}
.qa_page.child_page .qa_end {
  margin-bottom: 200px;
}

.status_box .status_wrapper.rausu_flex_winter {
  width: 46%;
}

.status_box .status_wrapper.top_rausu_summer {
  width: 100%;
}

.single_wrapper {
  padding: 50px 0;
}

.post_date {
  display: block;
  margin-top: 1em;
}

.blog_wrapper {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 100px;
  border-radius: 10px;
}
.blog_wrapper h2 {
  font-size: 3rem;
}
.blog_wrapper .blog_content_wrapper {
  margin-top: 120px;
  padding-bottom: 100px;
}

.news ul {
  max-width: 808px;
  margin: 0 auto;
}

.news ul li a.blog_box {
  justify-content: space-between;
}
.news ul li a.blog_box .tag {
  margin-left: 0;
}
.news ul li a.blog_box .title {
  font-size: 1.8rem;
  margin-top: 19px;
  font-weight: bold;
}
.news ul li a.blog_box .blog_excerpt {
  font-size: 1.4rem;
  margin-top: 24px;
}
.news ul li a.blog_box .date {
  margin-top: 18px;
  display: block;
}
.news ul li a.blog_box .blog_left {
  width: 59%;
}
.news ul li a.blog_box .right_img {
  width: 37.1%;
}
.news ul li a.blog_box .right_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.child_page.pension_page .top {
  background-image: url("./images/pension.png");
}
.child_page.pension_page .bl_filter {
  position: relative;
}
.child_page.pension_page .bl_filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 背景を暗くするための黒いオーバーレイ */
  z-index: 1;
  border-radius: 0 0 7.5% 0;
}
.child_page.pension_page .bl_filter > * {
  z-index: 2; /* コンテンツをオーバーレイの上に表示 */
}
.child_page.pension_page .child_page_title .title {
  font-size: 5rem;
  letter-spacing: unset;
}

.pension_head_box {
  padding-top: 160px;
  padding-bottom: 170px;
  display: flex;
  justify-content: space-between;
}

.pension_head_left {
  width: 35%;
  max-width: 400px;
}

.pension_head_right {
  width: 54.5%;
  max-width: 615px;
  display: flex;
  justify-content: space-between;
}
.pension_head_right .pension_head_img {
  width: 48.78%;
}

.pension_sub_head {
  font-size: 1.4rem;
  font-weight: bold;
  color: #73b819;
}

.pension_head {
  font-size: 3.5rem;
  font-weight: bold;
  margin-top: 10px;
  color: #73b819;
}

.pension_head_desc {
  font-size: 1.8rem;
  line-height: 2.22;
  margin-top: 48px;
}

.pention_set_plan .set_sub {
  text-align: center;
  font-size: 1.3rem;
}
.pention_set_plan .set_plans {
  text-align: center;
  font-size: 3rem;
  margin-top: 11px;
}
.pention_set_plan .plan_box_wrapper {
  display: flex;
  margin-top: 80px;
  justify-content: space-between;
}
.pention_set_plan .plan_box {
  width: 31%;
  max-width: 355px;
  display: flex;
  flex-direction: column;
}
.pention_set_plan .plan_box_title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 25px;
}
.pention_set_plan .plan_detail_box {
  width: 45%;
  max-width: 160px;
}
.pention_set_plan .plan_detail_box.sudomari {
  width: 100%;
  max-width: none;
  margin-top: 23px;
}
.pention_set_plan .plan_detail_wrapper {
  display: flex;
  justify-content: space-between;
  margin: auto 0 0 0;
}
.pention_set_plan .plan_n {
  font-size: 1.6rem;
  text-align: center;
  padding: 16px 0 17px 0;
  background-color: #f2f2f2;
  margin-bottom: 19px;
}
.pention_set_plan .plan_n.plan_n_2 {
  background-color: #d1f0a8;
}
.pention_set_plan .plan_detail {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.pention_set_plan .plan_detail span {
  font-size: 1.4rem;
}
.pention_set_plan .plan_detail .price {
  font-weight: bold;
  font-size: 1.6rem;
}
.pention_set_plan .plan_note {
  font-size: 1.4rem;
  margin-top: 16px;
}
.pention_set_plan .book_tel {
  display: block;
  width: 355px;
  padding: 22px 0 21px 0;
  border-radius: 30px;
  background-color: #f79662;
  margin: 31px auto 0 auto;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
}
.pention_set_plan .child_note {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 31px;
  font-weight: bold;
}
.pention_set_plan .period_wrapper {
  display: flex;
  margin-top: 74px;
  justify-content: space-between;
}
.pention_set_plan .period_box {
  width: 37.3%;
  max-width: 421px;
}

.period_title_wrap {
  background-color: #ededed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 30px 0;
}

.pention_set_plan .period_title {
  text-align: center;
  font-size: 1.8rem;
}

.period_title-date p {
  font-size: 1.8rem;
}

.pention_set_plan .period_flex {
  display: flex;
  font-size: 1.6rem;
  justify-content: space-between;
  padding: 20px 16px 21px 16px;
  border-bottom: 1px solid #707070;
}
.pention_set_plan .period_flex_right {
  font-weight: 600;
  line-height: 1.7222;
  text-align: end;
}
.pention_set_plan .period_flex_right .period_flex_right_note {
  font-size: 1.2rem;
  font-weight: normal;
}
.pention_set_plan .period_note {
  font-size: 1.6rem;
  margin-top: 20px;
}
.pention_set_plan .room {
  width: 56.39%;
  max-width: 635px;
}

.amenities {
  padding: 60px 0 150px 0;
}

.amenities_wrap {
  border: 1px solid #707070;
  border-radius: 8px;
  width: 100%;
  padding: 60px 0 80px 0;
}

.amenities_title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.amenities_box {
  display: flex;
  padding: 0 7.9%;
  justify-content: space-between;
  margin-top: 60px;
}

.amenities_each {
  width: 10.6%;
  max-width: 120px;
}
.amenities_each p {
  font-size: 1.4rem;
  margin-top: 13px;
  line-height: 1.57;
  text-align: center;
  font-weight: bold;
}

.pension_footer_pics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
.pension_footer_pics .pention_footer_pic {
  width: 31.52%;
  max-width: 355px;
}

.pension_footer_pic {
  width: 31%;
}

.company_info {
  padding-top: 120px;
  padding-bottom: 120px;
}
.company_info .company_info_table_wrapper {
  max-width: 806px;
  width: 90%;
  margin: 0 auto;
}
.company_info .company_info_table table {
  width: 100%;
  border-collapse: collapse;
}
.company_info .company_info_table th,
.company_info .company_info_table td {
  padding: 8px 20px;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.7222;
}

.company_history {
  padding-bottom: 180px;
}
.company_history .company_history_wrapper {
  padding: 70px 60px 60px 60px;
  background-color: #ededed;
  max-width: 806px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}
.company_history .company_history_wrapper h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.company_history .company_history_wrapper .company_history_table table {
  width: 100%;
  border-collapse: collapse;
}
.company_history .company_history_wrapper .company_history_table th,
.company_history .company_history_wrapper .company_history_table td {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.68;
}
.company_history .company_history_wrapper .company_history_table tr {
  padding-top: 15px;
}
.company_history .company_history_wrapper .company_history_table th {
  width: 9em;
}

.page_template {
  padding: 120px 0 180px 0;
}

.wp-block-contact-form-7-contact-form-selector {
  padding: 70px 60px 60px 60px;
  background-color: #ededed;
  max-width: 806px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

.wpcf7-form-control-wrap input {
  width: 100%;
  border: none;
  font-size: 1.4rem;
  margin-top: 5px;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}

.wpcf7-form-control-wrap textarea {
  border: none;
  width: 100%;
  margin-top: 5px;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}

.wpcf7-form label {
  font-size: 1.4rem;
}

.wpcf7-submit {
  display: block;
  margin: 40px auto 0 auto;
  font-size: 1.5rem;
  border: none;
  background-color: #73b819;
  color: #fff;
  padding: 10px 30px;
  cursor: pointer;
}

#xo-slider-266 {
  margin: 0 auto;
}

.xo-slider-template-thumbnail .swiper-container {
  aspect-ratio: 2/3;
}

.job_page {
  padding-bottom: 120px;
}
.job_page .job_top {
  padding-top: 140px;
  padding-bottom: 15px;
  width: 100%;
  background-image: url("./images/job_bg.jpeg");
}
.job_page .job_top_box {
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.job_page .job_top_title {
  font-size: 3.6rem;
  color: #fff;
}
.job_page .job_top_sub {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
.job_page .job_top_desc {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}
.job_page .job_detail {
  margin-top: 3rem;
}
.job_page .job_selector_wrapper {
  display: flex;
  justify-content: space-between;
}
.job_page .job_selector {
  width: 22%;
  cursor: pointer;
}
.job_page .h2 {
  font-size: 3rem;
  padding: 1em 0 0 0;
  margin-top: 40px;
}
.job_page td {
  padding: 8px;
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid #ddd;
  font-size: 1.4rem;
}
.job_page table tr > td:first-child {
  font-weight: bold;
  white-space: nowrap;
  background-color: #f5f5f5;
  font-size: 1.4rem;
}
.job_page .job_entry {
  display: block;
  margin: 40px auto 0 auto;
  font-size: 1.5rem;
  border: none;
  background-color: #73b819;
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  text-align: center;
  width: 150px;
}
.job_page .intern_wrapper p {
  font-size: 1.4rem;
}
.job_page .intern_wrapper p.h2 {
  font-size: 3rem;
}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.tab-pane.fade-in {
  opacity: 1;
}

.job_selector img {
  cursor: pointer;
}

.active {
  display: block !important;
  opacity: 1;
}

select {
  border: none;
}

.wpcf7-form p {
  font-size: 1.4rem;
}

.wpcf7-select {
  margin-right: 0.5em;
}

.wpcf7-list-item label {
  display: flex;
}
.wpcf7-list-item label input {
  width: 1em;
}

.child_page.set_plan_page .top {
  background-image: url("./images/set_top.png");
  background-repeat: no-repeat;
  aspect-ratio: 1366/935;
  background-size: contain;
  box-sizing: border-box;
}
.child_page.set_plan_page .set_subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 90px;
}
.child_page.set_plan_page .course_detail {
  margin: 0 auto;
  width: 100%;
  border: none;
  box-sizing: border-box;
}
.child_page.set_plan_page .set_course_wrapper {
  width: 82.5%;
  max-width: 1126px;
  border: 1px solid #73b819;
  border-radius: 15px;
  margin: 90px auto 0 auto;
}
.child_page.set_plan_page .border_top {
  position: relative;
}
.child_page.set_plan_page .border_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: block;
  height: 1px;
  background-color: #73b819;
}
.child_page.set_plan_page .setplan_reserve {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 56px;
  column-gap: 56px;
}
.child_page.set_plan_page .setplan_reserve a {
  width: 300px;
  padding-top: 17px;
  padding-bottom: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 45px;
  color: #fff;
  display: block;
  background-color: #73b819;
  text-align: center;
}
.child_page .setplan_note {
  margin-top: 60px;
}
.child_page .setplan_note .note_title {
  background-color: #de584d;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 19px 0;
  text-align: center;
}
.child_page .setplan_note .setplan_note_head {
  font-size: 1.6rem;
  color: #de584d;
  display: flex;
  align-items: center;
  margin-top: 30px;
  font-weight: bold;
}
.child_page .setplan_note .setplan_note_head::before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: #de584d;
  margin-right: 10px;
}
.child_page .setplan_note .setplan_note_left {
  width: 47%;
}
.child_page .setplan_note .setplan_note_right {
  width: 47%;
}
.child_page .setplan_note .setplan_note_wrapper {
  display: flex;
  justify-content: space-between;
}
.child_page .setplan_note .setplan_note_desc {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 24px;
  line-height: 1.71;
}
.child_page .setplan_note .note_sm {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 20px;
}
.child_page .setplan_note .note_reserve {
  font-size: 1.6rem;
  text-align: center;
  color: #de584d;
  line-height: 1.6875;
  margin-top: 50px;
  margin-bottom: 60px;
}
.child_page.set_plan_page .todays_status {
  left: 50%;
  transform: translateX(-50%);
  background: none;
}
.child_page.set_plan_page .todays_status .status_box_wrapper {
  display: flex;
  justify-content: space-between;
}
.child_page.set_plan_page .todays_status .status_box {
  margin: 0;
  padding: 0;
}
.utoro_gif {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .sp-nav ul li {
    font-size: 2rem;
    margin: 10px 0;
  }
  .inner_wrapper {
    padding: 0 5%;
  }
  .top {
    border-radius: 0 0 50px 0;
    background-image: url("./images/top_sp.png");
  }
  .top_wrapper {
    margin: 0 auto;
  }
  .header_menu {
    display: none;
  }
  #nav-wrapper {
    display: block;
  }
  .godzilla_top {
    left: 6%;
  }
  .activities {
    margin-top: 100vh;
  }
  .status_box_wrapper {
    flex-direction: column;
    margin-top: 22px;
  }
  .top_wrapper .top_catch {
    font-size: 3rem;
  }
  .todays_status {
    padding: 32px 5% 20px 5%;
    width: 88.6%;
    left: 5%;
    bottom: -71%;
  }
  .status_box {
    width: 100%;
  }
  .status_header {
    justify-content: center;
  }
  .utoro_today {
    margin-bottom: 15px;
  }
  .status_header .standard {
    display: none;
  }
  .status_header p {
    text-align: center;
    font-size: 1.4rem;
  }
  .status_header p span {
    font-size: 2.8rem;
  }
  .activities_wrapper {
    flex-direction: column;
    margin-top: 20px;
  }
  .activities_wrapper a {
    width: 90%;
  }
  .activities_wrapper a:nth-child(2) {
    align-self: flex-end;
    margin-top: 16px;
  }
  .news_and_sns {
    padding-top: 107px;
  }
  .news_and_sns_wrapper {
    flex-direction: column;
  }
  .news ul li .tag {
    display: none;
  }
  .news ul li .title {
    font-weight: normal;
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .news .view_more {
    margin: 30px auto 0 0;
  }
  .sns {
    width: 100%;
    margin-top: 133px;
  }
  .sns .section_subtitle,
  .sns .section_title {
    text-align: start;
  }
  .safe {
    padding: 139px 0 120px 0;
    border-radius: 100px 0 0 0;
  }
  .safe_title {
    font-size: 2.5rem;
  }
  .safe_section_title {
    margin-top: 45px;
    font-size: 1.4rem;
  }
  .safe_desc {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    font-size: 1.4rem;
    margin: 20px auto 0 auto;
  }
  .safe_section_subtitle {
    font-size: 1.6rem;
    line-height: 1.3125;
  }
  .safe_desc_2 {
    width: 100%;
    font-size: 1.4rem;
    padding: 0 5%;
    box-sizing: border-box;
    margin-top: 10px;
  }
  .ships {
    flex-direction: column;
    margin-top: 40px;
  }
  .ships li {
    width: 100%;
    margin-top: 50px;
  }
  .ships_title {
    font-size: 2.5rem;
  }
  .ships_desc {
    font-size: 1.4rem;
  }
  .pension_wrapper {
    background-position: center;
    padding-top: 230px;
    padding-bottom: 130px;
  }
  .pension_title {
    font-size: 2.5rem;
  }
  .pension_catch {
    font-size: 1.6rem;
    margin-top: 40px;
  }
  .pension_desc {
    margin-top: 24px;
  }
  .pension_img {
    width: 48.5%;
  }
  .pension_img_wrapper {
    transform: translateX(2%) translateY(-90px);
  }
  .set_plan .section_title {
    font-size: 2.5rem;
  }
  .set_plan .setplan_desc {
    padding: 0 5%;
    margin-top: 38px;
  }
  .setplan_wrapper .setplan_title {
    font-size: 2.2rem;
  }
  .set_plan .section_subtitle {
    margin: 0 auto;
  }
  .setplan_wrapper .setplan_box_wrapper {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    flex-direction: column;
    row-gap: 30px;
  }
  .setplan_wrapper .setplan_box {
    width: 100%;
  }
  .setplan_wrapper .setplan_box_title {
    font-size: 2rem;
  }
  .setplan_view_detail {
    margin: 70px auto 0 auto;
  }
  .qa {
    padding: 90px 0 150px 0;
  }
  .qa .section_title {
    font-size: 6.5rem;
  }
  .accordion {
    width: 90%;
    margin-top: 36px;
  }
  .accordion-open {
    font-size: 1.4rem;
  }
  .accordion_qa .Q::before,
  .accordion_qa .A::before {
    left: -2em;
  }
  .accordion-inner {
    font-size: 1.4rem;
  }
  .qa h3 {
    font-size: 1.8rem;
    margin: 118px auto 0 auto;
    width: 88%;
  }
  .qa .qa_link_wrapper {
    flex-direction: column;
    row-gap: 10px;
  }
  .qa .qa_link_wrapper .qa_link {
    width: 100%;
    font-size: 1.6rem;
  }
  .banner_p {
    margin-top: 100px;
  }
  .top_banner {
    margin: 30px auto 120px auto;
  }
  .gm_wrapper {
    flex-direction: column;
  }
  .gm_wrapper iframe {
    width: 100%;
    aspect-ratio: 390/208;
  }
  footer .footer_title {
    margin-top: 75px;
  }
  footer .footer_menu_wrapper {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 58px;
  }
  footer .footer_menu_wrapper a.inquiry {
    width: 44%;
  }
  footer .footer_link_wrapper_1 {
    margin-top: 32px;
  }
  footer .footer_link_wrapper_1 a {
    display: block;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  footer .footer_link_wrapper_2 {
    margin-top: 48px;
    flex-direction: column;
    align-items: center;
  }
  footer .footer_link_wrapper_2 .footer_link_left {
    width: 18%;
  }
  footer .footer_link_wrapper_2 .footer_link_center {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 50px;
    min-width: unset;
  }
  footer .footer_link_wrapper_2 .footer_link_center a {
    display: flex;
  }
  footer .footer_link_wrapper_2 .footer_link_right {
    font-weight: bold;
    width: 30%;
    margin-top: 45px;
  }
  footer .copyright {
    margin-top: 10px;
  }
  .child_page .top {
    min-height: 10vh;
    margin-bottom: 60%;
  }
  .child_page .top .child_page_title .title {
    font-size: 4rem;
  }
  .child_page .top .top_season_link {
    flex-direction: column;
    left: 4%;
    width: 90%;
    row-gap: 15px;
    bottom: -10%;
  }
  .child_page .top .top_season_link .season_link {
    margin-right: 0;
  }
  .child_page .top .top_season_link .season_link img {
    max-width: none;
    width: 100%;
  }
  .utoro_season_link {
    flex-direction: column;
    left: 4%;
    width: 90%;
    row-gap: 15px;
    bottom: -10%;
  }
  .utoro_season_link .season_link {
    margin-right: 0;
  }

  .utoro_season_link .season_link img {
    max-width: none;
    width: 100%;
  }

  .child_page .child_page_h2 {
    padding-top: 120px;
  }
  .child_page .child_page_h2 span {
    font-size: 4rem;
  }
  .child_page .child_page_catch {
    font-size: 2.3rem;
    width: 90%;
    line-height: 1.3;
  }
  .child_page .child_page_h3 {
    font-size: 1.6rem;
  }
  .status_box .status_flex {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .status_box .status_wrapper {
    width: 45%;
  }
  .child_page .three_plan_wrapper .setplan_box {
    width: 100%;
  }
  .child_page .course_detail {
    box-sizing: border-box;
    width: 90%;
    padding: 50px 25px 30px 25px;
  }
  .child_page .course_detail {
    flex-direction: column;
  }
  .child_page .course_left {
    width: 100%;
  }
  .child_page .course_right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .child_page .course_subtitle {
    font-size: 1.4rem;
  }
  .child_page .course_h3 {
    font-size: 2.5rem;
  }
  .child_page .book_course {
    order: 4;
    margin: 40px auto 0 auto;
  }
  .child_page .course_fee {
    padding: 20px 23px;
  }
  .child_page .course_fee .fee_row {
    font-size: 1.4rem;
  }
  .child_page .course_fee .fee_row .fee {
    font-size: 2rem;
  }
  .child_page .detail_wrapper .detail_right {
    font-size: 1.4rem;
  }
  .winter .unkou_notice {
    font-size: 1.2rem;
  }
  .out_season {
    width: 90%;
  }
  .winter .ryuhyo_notice {
    font-size: 1.4rem;
  }
  .winter .detail_schedule {
    padding: 32px 20px;
  }
  .winter .detail_schedule .detail_schedule_line::before {
    margin-right: 0.5em;
    width: 14px;
  }
  .winter .detail_schedule .detail_schedule_line::after {
    height: 5.5em;
  }
  .set_plan .setplan_date {
    margin-top: 14px;
  }
  .child_page .status_box_wrapper .status_box {
    width: 90%;
  }
  .rausu.child_page .course_h3 {
    white-space: wrap;
  }
  .rausu.child_page .status_box .status_wrapper.rausu_winter {
    width: 100%;
  }
  .winter {
    margin-top: 120px;
  }
  .child_page.set_plan_page .top {
    background-image: url("./images/set_top_sp.png");
    background-size: cover;
    min-height: 110vh;
  }
  .child_page.set_plan_page .top .top_season_link {
    bottom: -7%;
  }
  .child_page.set_plan_page .status_box_wrapper {
    row-gap: 30px;
  }
  .set_subtitle_wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .child_page.set_plan_page .set_subtitle {
    font-size: 2rem;
  }
  .child_page .set_subtitle_wrapper .child_page_catch {
    font-size: 1.6rem;
  }
  .child_page.set_plan_page .setplan_reserve {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }
  .child_page.set_plan_page .set_course_wrapper {
    width: 90%;
  }
  .setplan_note_wrapper {
    flex-direction: column;
  }
  .child_page.set_plan_page .setplan_note .setplan_note_left {
    width: 100%;
  }
  .child_page.set_plan_page .setplan_note .setplan_note_right {
    width: 100%;
  }
  .child_page.set_plan_page .setplan_note .note_reserve {
    font-size: 1.4rem;
  }
  .child_page.pension_page .top .child_page_title {
    width: 70%;
    text-align: center;
  }
  .child_page.pension_page .top .child_page_title .title {
    margin-top: 8px;
  }
  .child_page.pension_page .top {
    margin-bottom: 107px;
  }
  .pension_head_box {
    flex-direction: column;
  }
  .pension_head_left {
    width: 100%;
    max-width: none;
  }
  .pension_head {
    font-size: 3rem;
  }
  .pension_head_desc {
    font-size: 1.5rem;
    margin-top: 29px;
  }
  .pension_head_right {
    width: 100%;
    margin-top: 32px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .pention_set_plan {
    margin-top: 120px;
  }
  .pention_set_plan .plan_box_wrapper {
    margin-top: 54px;
    flex-direction: column;
  }
  .pention_set_plan .plan_box {
    width: 100%;
    max-width: none;
    margin-top: 90px;
  }
  .pention_set_plan .plan_box:first-child {
    margin-top: 0;
  }
  .plan_box_img img {
    width: 100%;
    max-width: unset;
  }
  .pention_set_plan .child_note {
    width: 90%;
    margin: 56px auto 0 auto;
  }
  .pention_set_plan .period_wrapper {
    margin-top: 90px;
    flex-direction: column;
  }
  .pention_set_plan .period_box {
    width: 100%;
    max-width: none;
  }
  .pention_set_plan .room {
    width: 100%;
    max-width: none;
    margin-top: 60px;
  }
  .amenities_box {
    margin-top: 48px;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .amenities_each {
    width: 47%;
  }
  .amenities {
    margin-top: 77px;
  }
  .pension_footer_pics {
    margin-top: 60px;
    flex-direction: column;
    row-gap: 15px;
  }
  .pension_footer_pic img {
    width: 100%;
    max-width: unset;
  }
  .qa_page.child_page .top {
    margin-bottom: 0;
  }
  .qa_page.child_page .qa {
    padding-top: 0;
    padding-bottom: 0;
  }
  .qa_page.child_page .qa .qa_link_wrapper {
    width: 90%;
  }
  .qa_page.child_page .qa h3 {
    margin-top: 90px;
  }
  .qa_page.child_page .qa_head_wrapper .qa_head {
    width: 92%;
    min-width: 320px;
    margin: 150px auto 0 auto;
    line-height: 1.3;
  }
  .qa_page.child_page .qa_head_wrapper {
    width: 90%;
  }
  .qa_page.child_page .qa_head_wrapper .qa_subhead {
    text-align: center;
  }
  .child_page .top.company_page .child_page_title {
    width: 100%;
    text-align: center;
  }
  .child_page .top.company_page .child_page_title .title {
    margin-top: 10px;
  }
  .child_page .top.company_page {
    margin-bottom: 0px;
  }
  .company_info {
    padding-top: 122px;
  }
  .company_info .company_info_table_wrapper {
    width: 100%;
  }
  .company_info .company_info_table th,
  .company_info .company_info_table td {
    padding: 8px 0;
  }
  .company_info .company_info_table td {
    width: 60%;
    font-size: 1.6rem;
  }
  .company_history .company_history_wrapper {
    width: 100%;
    padding: 60px 15px 90px 15px;
  }
  .company_history .company_history_wrapper {
    margin-top: 60px;
  }
  .company_history .company_history_wrapper .company_history_table td {
    display: block;
    margin-top: 10px;
  }
  .company_history .company_history_wrapper .company_history_table th {
    display: block;
    margin-top: 30px;
  }
  .company_history {
    padding-bottom: 80px;
  }
  .child_page .top .child_page_title {
    width: 90%;
    text-align: center;
  }
  .page_main.child_page .top {
    margin-bottom: 0;
  }
  .page_template {
    padding: 120px 0;
    width: 90%;
    margin: 0 auto;
  }
  .wp-block-contact-form-7-contact-form-selector {
    padding: 70px 30px 30px 30px;
  }
  .news_page.child_page .top {
    margin-bottom: 0;
  }
  .news ul li a.blog_box {
    flex-direction: column;
  }
  .news ul li a.blog_box .blog_left {
    width: 100%;
  }
  .news ul li a.blog_box .right_img {
    width: 100%;
    margin-top: 18px;
  }
  .pagination {
    text-align: center;
    font-size: 1.6rem;
  }
  .pagination span {
    opacity: 2.5;
  }
  .pagination a {
    padding: 0 0.5em;
  }
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
  .xo-slider-template-thumbnail .swiper-container {
    aspect-ratio: 3/2;
  }
  .xo-slider-template-thumbnail .gallery-main .slide-content-title {
    font-size: 20px;
  }
  .job_top_right {
    margin-top: 40px;
  }
  .job_page .job_top_title {
    font-size: 3rem;
  }
  .job_page .job_selector_wrapper {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .job_page .job_selector {
    width: 47%;
  }
}
.winter_rev .winter {
  background: none;
}
.winter_rev .winter .setplan_box {
  background-color: #63e3e3;
}
.winter_rev .winter .setplan_desc_box {
  background-color: #fff;
}
.winter_rev .winter .course_detail {
  border: 1px solid #63e3e3;
}
.winter_rev .summer {
  background: linear-gradient(45deg, #73b819 0%, #ace363 100%);
  border-radius: 0 150px 0 0;
  padding-bottom: 120px;
}
.winter_rev .summer .setplan_wrapper .setplan_box {
  background-color: #fff;
}
.winter_rev .summer .setplan_wrapper .setplan_desc_box {
  background-color: #ace363;
}
.winter_rev .summer .view_detail {
  border: 1px solid #ace363;
}
.winter_rev .summer .course_detail {
  background-color: #fff;
} /*# sourceMappingURL=style.css.map */

/* 20240917追加 */
.booking_fixed {
  width: 50px;
  height: 50px;
  background-color: #fff;
  padding: 30px;
  border-radius: 100%;
  background-color: "fff";
  position: fixed;
  border: 1px solid #333;
  right: 5%;
  bottom: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease-in-out;
}

.booking_fixed a {
  width: 70px;
  display: block;
  transition: 0.15s all ease-in-out;
}

.booking_fixed a img {
  width: 45px;
  transition: 0.15s all ease-in-out;
}

.booking_fixed span {
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 10px;
  transition: 0.15s all ease-in-out;
  font-weight: bold;
}

.booking_fixed:hover {
  transform: scale(1.1);
}

.booking_fixed:hover img {
  transform: scale(1.1);
}
.booking_fixed:hover span {
  transform: scale(1.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .booking_fixed {
    width: 25px;
    height: 25px;
  }
  .booking_fixed a img {
    width: 35px;
  }
  .booking_fixed span {
    font-size: 12px;
  }
}

.safe_section {
  margin: 0 auto;
  max-width: 725px;
  width: 80%;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .safe_section {
    font-size: 1.4rem;
  }
}

.set_desc_top {
  margin-top: 50px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
}

.set_plan_page .setplan_wrapper {
  margin-top: 220px;
}

@media screen and (max-width: 768px) {
  .set_desc_top {
    font-size: 1.4rem;
    padding-inline-start: 0 5%;
  }
}

.news_and_sns .sb_instagram_header {
  display: none;
}


.sns_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.instagram_wrap,
.banner_list {
  width: 100%;
}

.banner_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.banner_list img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sns_wrap {
    grid-template-columns: 1fr;
  }
}

.yobimori_banner {
  width: 82.5%;
  max-width: 1286px;
  margin: 60px auto 0 auto;
  display: flex;
  gap: 30px;
}

.yobimori_banner_image {
  width: 40%;
}

.yobimori_banner_image img {
  width: 100%;
}

.yobimori_details_wrap {
  width: 60%;
}

.yobimori_details {
  color: #F15711;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .yobimori_banner {
    width: 90%;
    flex-direction: column;
  }

  .yobimori_banner_image {
    width: 100%;
  }
  
  .yobimori_details_wrap {
    width: 100%;
  }
}


.raus_animal_calender {
  width: 82.5%;
  margin: 0 auto;
  font-size: 1.6rem;
  padding: 0 0 120px 0;
}

.raus_animal_calender h2{
  text-align: center;
}

.calender_desc {
  text-align: center;
  margin: 0 0 41px 0;
}

.calender_desc .status_1,
.calender_desc .status_2,
.calender_desc .status_3 {
  padding: 0 0.5em;
  margin: 0 0.5em;
}

.calender_desc .inline{
  display: inline-block;
}
.raus_animal_calender a{
  display: block;
  text-align: center;
}

.raus_animal_calender .notes {
  margin: 41px auto 0 auto;
  text-align: center;
}

.raus_animal_calender table {
  border-collapse: collapse;
  border: 1px solid #ddd;
  margin: 0 auto;
  min-width: 600px;
  width: 100%;
  max-width: 1126px;
}
.raus_animal_calender table th,
.raus_animal_calender table td {
  border: 1px solid #ddd;
}
.raus_animal_calender thead th {
  background: #EEE;
}
.raus_animal_calender thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #EEE;
}
.raus_animal_calender tbody td:first-child {
  background: #434D57;
  color: #fff;
  position: sticky;
  left: 0;
  z-index: 1;
}

.raus_animal_calender th, td {
  padding: 0.5em;
  text-align: center;
}

.raus_animal_calender .status_1 {
  background: #E2FFFB;
}

.raus_animal_calender .status_2 {
  background: #AFEDE6;
}

.raus_animal_calender .status_3 {
  background: #3DD8D8;
}

@media (max-width: 768px) {
  .raus_animal_calender .js-scrollable {
    overflow-x: auto;
  }

  .raus_animal_calender .section_title {
    font-size: 2.5rem;
  }

}

.raus_animal_calender a{
  margin: 60px auto 0 auto;
  font-size: 1.6rem;
  font-family: "Roboto";
  width: 230px;
  border-radius: 7px;
  background-color: #73b819;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}

.top_container {
  overflow: hidden;
}

.swiper {
  overflow: unset !important;
}

.top-swiper {
  height: 100dvh
}

.swiper-slide {
  position: relative;
  height: 100vh;
  width: 100%;
}

.swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 0 0 7.5% 0;
}

.top-wrap {
  position: absolute;
  top: 260px;
  left: 9%;
}

.top-catch {
  font-size: 40px;
  color: #fff;
}

.top-sub {
  font-size: 13px;
  color: #fff;
}

.top-link {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 24px 22px;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  box-sizing: border-box;
  line-height: 1.46;
  margin-top: 30px;
  position: relative;
}

.top-link::after {
  content: "";
  height: 1px;
  width: 80px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 70px;
}

.swiper-pagination {
  width: fit-content !important;
  bottom: -35px !important;
  right: 15vw !important;
  margin: 0 0 0 auto !important;
}

.swiper-pagination-bullet-active {
  background: #333 !important;
}

@media screen and (max-width: 768px) {
  .top-catch {
    font-size: 3rem;
  }

  .swiper-pagination {
    right: 0 !important;
    margin: 0 auto !important;
  }
}

.periods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.other_period {
  display: inline-block;
}


.footer_address {
  width: 80%;
  max-width: 587px;
  margin: 40px auto 0 auto;
  font-size: 1.2rem;
  font-family: "Roboto";
  line-height: 1.5;
}

.footer_addresses {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0 0 0;
}

.footer_addresses div {
  width: 50%;
}

.footer_addresses h4{
  font-weight: bold;
  margin: 5px 0;
}

@media screen and (max-width: 768px) {
  .footer_address {
    text-align: center;
  }

  .footer_addresses {
    flex-direction: column;
    align-items: center;
  }

  .footer_addresses div {
    width: 100%;
  }
}

.plan_box_desc {
  margin: 20px 0;
  font-size: 1.4rem;
}

.pention_set_plan .siretoko {
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .pension_footer_pic {
    width: 100%;
  }
}

.plan_box .sudomari{
  padding: 0 0 20px 0;
}

