@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: YakuHanJP, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

#header {
  width: 100%;
  height: 120px;
  padding: 10px 0;
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 10;
  color: #000!important;
  transition: all 0.3s;
}
#header a:link,#header a:active,#header a:visited,#header a:hover{
  color: #000!important;
}

#header .logo-box {
  display: flex;
  align-items: center;
  margin-left: 12%;
  margin-right: auto;
}

#header .logo-box__img {
}

#header .logo-box__title {
  font-size: 1.6rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  #header {
    height: auto;
    padding: 8px 0 0;
  }
  #header .logo-box {
    margin-left: 8px;
  }
  #header .logo-box__img {
    width: 20%;
    margin-right: 8px;
  }
  #header .logo-box__title {
    font-size: 1.4rem;
  }
}

#header.header_fixed {
  height: 80px;
  padding: 8px 0;
  position: fixed;
  background: #65a9dc;
}

#header.header_fixed .logo-box__img {
  width: 72px;
}

@media screen and (max-width: 1200px) {
  #header.header_fixed {
    position: absolute;
  }
}

.menu {
  margin-right: 12%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menu__tell {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.menu__tell-icon {
  width: 24px;
  fill: #000;
  margin-right: 8px;
}

.menu__tell-number {
  font-size: 2.5rem;
}

.menu-nav {
  display: flex;
}

.menu-nav__list:not(:last-child) {
  margin-right: 24px;
}

.menu-nav__anchor {
  display: block;
  color: #000;
  padding-bottom: 2px;
  position: relative;
}

.menu-nav__anchor::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.menu-nav__anchor:hover::after {
  transform: scale(1, 1);
}

.sm-menu__icon,
.sm-menu__overlay {
  display: none;
}

@media screen and (max-width: 1200px) {
  .sm-menu__icon {
    cursor: pointer;
    display: block;
    width: 44px;
    height: 44px;
    background: #65a9dc;
    border: 2px solid #65a9dc;
    position: fixed;
    top: 8px;
    right: 8px;
  }
  .sm-menu__icon:focus {
    outline: none;
  }
  .sm-menu__icon-parts,
  .sm-menu__icon-parts::before,
  .sm-menu__icon-parts::after {
    background-color: #fafafa;
    display: block;
    width: 34px;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s;
  }
  .sm-menu__icon-parts:before {
    content: "";
    top: 16px;
  }
  .sm-menu__icon-parts:after {
    content: "";
    top: -16px;
  }
  .sm-menu__overlay {
    background: #333;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: block;
    transition: all 0.3s;
  }
  .sm-menu__overlay.sm-menu__active {
    opacity: 0.5;
  }
  .sm-menu__icon {
    z-index: 10;
  }
  .sm-menu__overlay {
    z-index: 3;
  }
  .menu {
    visibility: hidden;
    background: #65a9dc;
    color: #fafafa;
    max-width: 100%;
    width: 40%;
    height: 100vh;
    padding: 72px 24px 0;
    margin-right: 0;
    display: block;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: -40%;
    z-index: 9;
    transition: all 0.3s;
  }
  .menu.sm-menu__active {
    visibility: inherit;
    right: 0;
    z-index: 4;
  }
  .menu__tell {
    margin-bottom: 24px;
  }
  .menu-nav {
    flex-wrap: wrap;
  }
  .menu-nav__list {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px dotted #fafafa;
  }
  .menu-nav__list:not(:last-child) {
    margin-right: 0;
  }
  .menu-nav__anchor {
    display: block;
    color: #fafafa;
    padding-bottom: 2px;
    position: relative;
  }
  .menu-nav__anchor::after {
    content: none;
  }
  .sm-menu__icon.sm-menu__active .sm-menu__icon-parts {
    background: transparent;
  }
  .sm-menu__icon.sm-menu__active .sm-menu__icon-parts:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
  }
  .sm-menu__icon.sm-menu__active .sm-menu__icon-parts:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    right: -80%;
  }
  .menu.sm-menu__active {
    width: 80%;
    right: 0;
  }
}

/**************************************
content
***************************************/
.content {
  margin: 0 auto 160px;
  width: 1136px;
}

.content__title {
  width: max-content;
  margin: 0 auto 64px;
  font-size: 4.8rem;
  font-weight: 600;
  position: relative;
}

.content__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  background: #cbe1f2;
  position: absolute;
  z-index: -1;
  bottom: 8px;
}

@media screen and (max-width: 1200px) {
  .content {
    margin: 0 auto 56px;
    width: 90%;
  }
  .content__title {
    width: max-content;
    margin: 0 auto 32px;
    font-size: 3rem;
  }
  .content__title::after {
    height: 16px;
    bottom: 6px;
  }
}

/**************************************
mainvisual
***************************************/
.mainvisual {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background: url(../image/mainvisual_lg.jpg) no-repeat;
  background-size: 100%;
  position: relative;
  margin-bottom: 200px;
}

.mainvisual__logo {
  width: 33.33333%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -260%);
}

.mainvisual__text {
  position: absolute;
  width: 20.67708%;
  left: 50%;
  transform: translate(-47%, -1280%);
}

@media screen and (max-width: 768px) {
  .mainvisual {
    padding-top: 177.86667%;
    background: url(../image/mainvisual_sm.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 64px;
  }
  .mainvisual__logo {
    width: 80%;
    left: 50%;
    transform: translate(-50%, -310%);
  }
  .mainvisual__text {
    width: 80%;
    left: 50%;
    transform: translate(-50%, -1130%);
  }
}

/**************************************
map
***************************************/
.map__lead-text {
  width: 80%;
  margin: 0 auto 24px;
}

.map__lead-img {
  margin: auto;
}

.map-tab {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.map-tab__buttonbox {
  position: relative;
  width: 60%;
  padding-top: 78.08717%;
  background: url(../image/map_katano-map.svg) no-repeat;
}

.map-tab__button {
  position: absolute;
  cursor: pointer;
  color: #fafafa;
  font-size: 2rem;
  padding: 7px 16px;
}

.map-tab__button:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 9px solid transparent;
}

.map-tab__button:hover,
.map-tab__button.active {
  transition: all 0.3s;
  opacity: 0.5;
}

.map-tab__contentarea {
  width: 40%;
}

@media screen and (max-width: 1200px) {
  .map-tab__contentarea {
    width: 100%;
  }
}

.map-tab__completion {
  font-size: 1.4rem;
}

.map-tab__completion--shop {
  color: #e87b67;
}

.map-tab__completion--act {
  color: #f2b35d;
}

@media screen and (max-width: 1200px) {
  .map-tab {
    display: block;
  }
  .map-tab__buttonbox {
    width: 100%;
    padding-top: 126.55172%;
    background: url(../image/map_katano-map.png) no-repeat;
    background-size: contain;
    display: flex;
    flex-wrap: wrap;
  }
  .map-tab__button {
    position: static;
    display: block;
    text-align: center;
    margin: 4px 8px;
    width: calc((100% - (8px * 12)) / 6);
    border-radius: 4px;
  }
  .map-tab__button:before {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .map-tab__button {
    padding: 4px 8px;
    margin: 4px;
    width: calc((100% - (4px * 12)) / 6);
  }
}

.shop1_label {
  transform: translate(720%, -1640%);
}

.shop2_label {
  transform: translate(350%, -1210%);
}

.shop3_label {
  transform: translate(1040%, -1660%);
}

.shop4_label {
  transform: translate(600%, -1700%);
}

.shop5_label {
  transform: translate(430%, -1080%);
}

.shop6_label {
  transform: translate(330%, -1570%);
}

.act1_label {
  transform: translate(1170%, -830%);
}

.act2_label {
  transform: translate(640%, -430%);
}

.act3_label {
  transform: translate(830%, -1000%);
}

.act4_label {
  transform: translate(1370%, -1620%);
}

.act5_label {
  transform: translate(550%, -820%);
}

.act6_label {
  transform: translate(750%, -1440%);
}

.shop1_label,
.shop2_label,
.shop3_label,
.shop4_label,
.shop5_label,
.shop6_label {
  background: #e87b67;
}

.shop1_label:before,
.shop2_label:before,
.shop3_label:before,
.shop4_label:before,
.shop5_label:before,
.shop6_label:before {
  border-top: 12px solid #e87b67;
}

@media screen and (max-width: 1200px) {
  .shop1_label,
  .shop2_label,
  .shop3_label,
  .shop4_label,
  .shop5_label,
  .shop6_label {
    transform: none;
    margin-top: 16px;
  }
  .shop1_label:before,
  .shop2_label:before,
  .shop3_label:before,
  .shop4_label:before,
  .shop5_label:before,
  .shop6_label:before {
    border-top: none;
  }
}

.act1_label,
.act2_label,
.act3_label,
.act4_label,
.act5_label,
.act6_label {
  background: #f2b35d;
}

.act1_label:before,
.act2_label:before,
.act3_label:before,
.act4_label:before,
.act5_label:before,
.act6_label:before {
  border-top: 12px solid #f2b35d;
}

@media screen and (max-width: 1200px) {
  .act1_label,
  .act2_label,
  .act3_label,
  .act4_label,
  .act5_label,
  .act6_label {
    transform: none;
    margin-bottom: 16px;
  }
  .act1_label:before,
  .act2_label:before,
  .act3_label:before,
  .act4_label:before,
  .act5_label:before,
  .act6_label:before {
    border-top: none;
  }
}

.shop2_label::before {
  top: auto;
  bottom: 100%;
  left: 50%;
  border-top: none;
  border-bottom: 12px solid #e87b67;
}

@media screen and (max-width: 1200px) {
  .shop2_label::before {
    content: none;
  }
}

@keyframes tabanime {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.map-tab_content {
  display: none;
}

.map-tab_content.active {
  display: block;
  animation: tabanime ease 0.3s forwards;
}

.map-tab_content__image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.map-tab_content__caption-shop,
.map-tab_content__caption-act {
  padding: 24px 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.map-tab_content__caption-shop {
  background: #fce0cf;
}

.map-tab_content__caption-act {
  background: #fef3d9;
}

.map-tab_content__name {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.map-tab_content__number-shop,
.map-tab_content__number-act {
  display: block;
  font-size: 1.6rem;
  margin-right: 8px;
  padding: 4px 10px;
  color: #fafafa;
}

.map-tab_content__number-shop {
  font-size: 1.6rem;
  background: #e87b67;
}

.map-tab_content__number-act {
  font-size: 1.6rem;
  background: #f2b35d;
}

.map-tab_content__text {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .map-tab_content__name {
    font-size: 1.8rem;
  }
  .map-tab_content__number-shop,
  .map-tab_content__number-act {
    padding: 2px 8px;
  }
  .map-tab_content__address {
    font-size: 1.2rem;
  }
}

/**************************************
access
***************************************/
.googlemap {
  padding-top: 56.25%;
}

/**************************************
plan
***************************************/
.plan-box {
  width: 100%;
  padding: 40px;
  margin-bottom: 56px;
/*  border: 6px solid;*/
/*  border-radius: 8px;*/
/*  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);*/
  position: relative;
}

.plan-box::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 20vh;
  top: 0;
  left: 0;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  .plan-box {
    padding: 16px;
/*    border: 2px solid;*/
    margin-bottom: 0;
    margin-top: 48px;
  }
  .plan-box:last-of-type {
    margin-bottom: 48px;
  }
  .plan-box::before {
    height: 12%;
  }
}

.plan-k2-1 {
  border-color: #f2a97c;
}

.plan-k2-1::before {
  background: #fef7f2;
}

.plan-k2-2 {
  border-color: #f2b35d;
  background: #fffbea;
}

.plan-k2-2::before {
/*  background: #fffbea;*/
}

.plan-k3 {
  border-color: #8bc777;
}

.plan-k3::before {
  background: #f2faec;
}

.plan-i3 {
  border-color: #53b0b3;
}

.plan-i3::before {
  background: #e8faf8;
}

.plan-box__title--k2-1,
.plan-box__title--k2-2,
.plan-box__title--k3,
.plan-box__title--i3 {
  display: flex;
  align-items: center;
  position: absolute;
  font-size: 3.2rem;
  font-weight: 600;
  padding: 16px 64px;
  text-align: center;
  top: 0;
  left: 0;
  border-bottom-right-radius: 40px;
  color: #fafafa;
}

@media screen and (max-width: 768px) {
  .plan-box__title--k2-1,
  .plan-box__title--k2-2,
  .plan-box__title--k3,
  .plan-box__title--i3 {
    width: 100%;
    font-size: 2.4rem;
    padding: 12px 24px;
    margin-bottom: 48px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    line-height: 0.5em;
  }
}

.plan-box__title--k2-1 {
  background: #f2a97c;
}

.plan-box__title--k2-2 {
  color: #333;
  background: #f2b35d;
}

.plan-box__title--k3 {
  height: 2em;
  background: #8bc777;
}

.plan-box__title--i3 {
  height: 2em;
  background: #53b0b3;
}

.plan-box__title-sub {
  font-size: 1.6rem;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .plan-box__title-sub {
    font-size: 1.2rem;
  }
}

.plan-area__caption--k2-1 .plan-area___caption-title ::before,
.plan-area__caption--k2-2 .plan-area___caption-title ::before,
.plan-area__caption--k3 .plan-area___caption-title ::before,
.plan-area__caption--i3 .plan-area___caption-title ::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 8px;
  height: 100%;
  z-index: -1;
}

.plan-area {
  width: 100%;
  margin: 96px auto 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.plan-area__image {
  margin: auto;
}

.plan-area__caption {
  width: calc(50% - 32px);
  margin-left: 32px;
}

.plan-area__caption-title {
  position: relative;
  font-size: 2.5rem;
  padding-left: 16px;
  margin-bottom: 32px;
  border-left: 4px solid;
}

.plan-area__caption-list {
  font-size: 2rem;
}

.plan-area__caption-description {
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 24px;
  padding-left: 24px;
}

.plan-area__caption-description::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.plan-area__caption-price {
  font-size: 3.9rem;
  color: #333;
}

.plan-area__caption-pricenumber {
  font-size: 7.3rem;
}

@media screen and (max-width: 768px) {
  .plan-area {
    width: 100%;
    flex-wrap: wrap;
    margin: 56px auto 24px;
  }
  .plan-area__caption {
    width: 100%;
    margin-left: 0;
  }
  .plan-area__caption-title {
    font-size: 2.2rem;
    padding-left: 8px;
    margin-bottom: 16px;
    border-left: 2px solid;
  }
  .plan-area__caption-list {
    font-size: 1.8rem;
  }
  .plan-area__caption-description {
    margin-bottom: 8px;
    padding-left: 16px;
  }
  .plan-area__caption-description::before {
    content: "";
    display: block;
    margin-right: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }
  .plan-area__caption-price {
    font-size: 2.9rem;
  }
  .plan-area__caption-pricenumber {
    font-size: 5.9rem;
  }
}

.plan-area__caption--k2-1 {
  color: #f2a97c;
  border-color: #f2a97c;
}

.plan-area__caption--k2-1 .plan-area___caption-title ::before {
  background: #fce0cf;
}

.plan-area__caption--k2-1 .plan-area__caption-description::before {
  background: #f2a97c;
}

.plan-area__caption--k2-1 .plan-area__caption-pricenumber {
  color: #f2a97c;
}

.plan-area__caption--k2-2 {
  color: #f2b35d;
  border-color: #f2b35d;
}

.plan-area__caption--k2-2 .plan-area___caption-title ::before {
  background: #fef3d9;
}

.plan-area__caption--k2-2 .plan-area__caption-description::before {
  background: #fcd57f;
}

.plan-area__caption--k2-2 .plan-area__caption-pricenumber {
  color: #f2b35d;
}

.plan-area__caption--k3 {
  color: #8bc777;
  border-color: #8bc777;
}

.plan-area__caption--k3 .plan-area___caption-title ::before {
  background: #dceed6;
}

.plan-area__caption--k3 .plan-area__caption-description::before {
  background: #8bc777;
}

.plan-area__caption--k3 .plan-area__caption-pricenumber {
  color: #8bc777;
}

.plan-area__caption--i3 {
  color: #53b0b3;
  border-color: #53b0b3;
}

.plan-area__caption--i3 .plan-area___caption-title ::before {
  background: #cbe7e8;
}

.plan-area__caption--i3 .plan-area__caption-description::before {
  background: #53b0b3;
}

.plan-area__caption--i3 .plan-area__caption-pricenumber {
  color: #53b0b3;
}

/**slide**/
.swiper-container_k2-1_area,
.swiper-container_k2-2_area,
.swiper-container_k3_area,
.swiper-container_i3_area {
  width: 50%;
  overflow: hidden;
}

.swiper-container_k2-1,
.swiper-container_k2-2,
.swiper-container_k3,
.swiper-container_i3 {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.swiper-button-prev {
  top: 25%;
  left: 50px;
}

.swiper-button-next {
  top: 25%;
  right: 50px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 24px;
  height: 24px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.swiper-button-prev::after {
  transform: rotate(-45deg);
}

.swiper-button-next::after {
  transform: rotate(135deg);
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .swiper-container_k2-1_area,
  .swiper-container_k2-2_area,
  .swiper-container_k3_area,
  .swiper-container_i3_area {
    width: 100%;
    overflow: hidden;
  }
  .swiper-button-prev {
    left: 2px;
  }
  .swiper-button-next {
    right: 2px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: "";
    width: 16px;
    height: 16px;
    border-top: 2px solid;
    border-left: 2px solid;
  }
}

.swiper-container_k2-1 > .swiper-button-prev,
.swiper-container_k2-1 > .swiper-button-next {
  color: #f2a97c;
}

.swiper-container_k2-1 > .swiper-pagination > .swiper-pagination-bullet-active {
  background: #f2a97c;
}

.swiper-container_k2-2 > .swiper-button-prev,
.swiper-container_k2-2 > .swiper-button-next {
  color: #f2b35d;
}

.swiper-container_k2-2 > .swiper-pagination > .swiper-pagination-bullet-active {
  background: #f2b35d;
}

.swiper-container_k3 > .swiper-button-prev,
.swiper-container_k3 > .swiper-button-next {
  color: #8bc777;
}

.swiper-container_k3 > .swiper-pagination > .swiper-pagination-bullet-active {
  background: #8bc777;
}

.swiper-container_i3 > .swiper-button-prev,
.swiper-container_i3 > .swiper-button-next {
  color: #53b0b3;
}

.swiper-container_i3 > .swiper-pagination > .swiper-pagination-bullet-active {
  background: #53b0b3;
}

.plan-figure__comment--k2-1,
.plan-figure__comment--k2-2,
.plan-figure__comment--k3,
.plan-figure__comment--i3 {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .plan-figure__comment--k2-1,
  .plan-figure__comment--k2-2,
  .plan-figure__comment--k3,
  .plan-figure__comment--i3 {
    width: 90%;
  }
}

.plan-figure {
  width: 95%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content:space-between;
}
.plan_img{
width:65%;
}
.plan_info{
width:33%;
}
.plan-area__image{
margin-bottom:55px;
}
.plan-figure__description{
margin:auto;
}

.k2-2_plan13{
margin-bottom:150px;
}
@media screen and (max-width: 768px) {
.plan-figure {
width: 95%;
margin: 0 auto 24px;
display:block;

}
.plan_img{
width:100%;
margin-bottom:5%;
}
.plan_info{
width:100%;
display:flex;
align-items:flex-end;
justify-content:space-between;
}
.plan-area__image{
margin-bottom:0;
width:45%;
}
.plan-figure__description{
margin:auto;
width:49%;
}

.k2-2_plan13{
margin-bottom:150px;
}
}


.plan-figure__comment-title {
  font-size: 2rem;
  font-weight: 600;
  width: max-content;
  padding-bottom: 4px;
  margin-bottom: 8px;
  border-bottom: 4px solid;
}

.plan-figure__comment-text:not(:last-child) {
  margin-bottom: 16px;
}

.plan-photo{
display:flex;
width:80%;
/*max-width:900px;*/
flex-wrap:wrap;
justify-content:space-between;
margin:70px auto 0!important;
}
.plan-photo li{
width:48%;
margin-bottom:40px;
}


@media screen and (max-width: 1200px) {
  .plan-figure__image {
    width: 65%;
  }
  .plan-figure__description {
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  .plan-figure {
    width: 100%;
    flex-wrap: wrap;
  }
  .plan-figure__image {
    width: 100%;
  }
  .plan-figure__description {
    width: 50%;
    margin: 0 auto;
  }
  .plan-figure__comment-title {
    font-size: 1.8rem;
    padding-bottom: 2px;
    margin-bottom: 8px;
    border-bottom: 2px solid;
  }
  .plan-figure__comment-text {
    font-size: 1.4rem;
  }
}

.plan-figure__comment--k2-1 .plan-figure__comment-title {
  color: #f2a97c;
  border-color: #f2a97c;
}

.plan-figure__comment--k2-2 .plan-figure__comment-title {
  color: #f2b35d;
  border-color: #f2b35d;
}

.plan-figure__comment--k3 .plan-figure__comment-title {
  color: #8bc777;
  border-color: #8bc777;
}

.plan-figure__comment--i3 .plan-figure__comment-title {
  color: #53b0b3;
  border-color: #53b0b3;
}

/**************************************
location
***************************************/
.location-train {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 48px;
}

.location-train__route {
  margin-right: 32px;
}

.location-train__station-access {
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  padding: 8px 16px;
  margin-bottom: 24px;
  color: #fafafa;
  background: #65a9dc;
}

.location-train__station-access::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border: 24px solid transparent;
  border-left-color: #65a9dc;
  width: 0;
  height: 0;
}

@media screen and (max-width: 1200px) {
  .location-train__station-access {
    font-size: 1.8rem;
    font-weight: 400;
    padding: 8px;
    margin-bottom: 16px;
  }
  .location-train__station-access::after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .location-train {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .location-train__route {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .location-train__station-access {
    padding: 8px;
    margin-bottom: 16px;
  }
  .location-train__station-image {
    width: 90%;
    margin: 0 auto;
  }
}

.location-photo {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto 40px;
}

.location-photo__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((100% - (24px * 3)) / 3);
  margin-right: 24px;
}

.location-photo__box:nth-child(3n-1) {
  margin-top: 16px;
}

.location-photo__box:nth-child(3n) {
  margin-top: 32px;
}

.location-photo__caption {
  order: 1;
  display: inline-block;
  position: relative;
  margin: 0 0 0 -16px;
  padding: 8px 24px;
  color: #fafafa;
  background: #65a9dc;
}

.location-photo__caption:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 12px transparent;
  border-right: solid 16px #5075ba;
}

.location-photo__image {
  order: 2;
  border-radius: 6px;
  margin-top: -48px;
}

@media screen and (max-width: 768px) {
  .location-photo {
    width: 95%;
  }
  .location-photo__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc((100% - (8px * 2)) / 2);
    margin-right: 8px;
  }
  .location-photo__box:nth-child(3n-1) {
    margin-top: 0;
  }
  .location-photo__box:nth-child(3n) {
    margin-top: 0;
  }
  .location-photo__box:nth-child(2n-1) {
    margin-top: 8px;
  }
  .location-photo__box:nth-child(2n) {
    margin-top: 16px;
  }
  .location-photo__caption {
    order: 1;
    margin: 0 0 0 -4px;
    padding: 4px;
    font-size: 1.1rem;
  }
  .location-photo__caption:before {
    content: "";
    border-bottom: solid 4px transparent;
    border-right: solid 6px #5075ba;
  }
  .location-photo__image {
    order: 2;
    border-radius: 6px;
    margin-top: -24px;
  }
}

.location-range__place,
.location-range__place--k2-1,
.location-range__place--k2-2,
.location-range__place--k3,
.location-range__place--i3 {
  width: calc(100% - (8px * 5) / 5);
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .location-range__place,
  .location-range__place--k2-1,
  .location-range__place--k2-2,
  .location-range__place--k3,
  .location-range__place--i3 {
    width: 100%;
    margin-right: 0;
  }
}

.location-range {
  width: 90%;
  margin: 0 auto 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.location-range__place {
  order: 1;
  background: #cbe1f2;
width:40%;
}

.location-range__place > .location-range__title {
  display: none;
}

.location-range__place .location-range__list .location-range__time {
  text-align: left;
}

.location-range__place--k2-1 {
  order: 2;
  background: #fce0cf;
}

.location-range__place--k2-2 {
  order: 3;
  background: #fef3d9;
}

.location-range__place--k3 {
  order: 4;
  background: #dceed6;
}

.location-range__place--i3 {
  order: 5;
  background: #cbe7e8;
}

.location-range__title {
  text-align: center;
  padding: 16px 0;
  border-bottom: 2px solid #333;
}

.location-range__time {
  padding: 16px;
  text-align: right;
}

.location-range__time:not(:last-child) {
  border-bottom: 1px dotted #333;
}

@media screen and (max-width: 768px) {
  .location-range {
    width: 95%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .location-range__place {
    display: none;
  }
  .location-range__list {
    background: #f5f8fd;
  }
  .location-range__time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    padding: 16px 8px;
  }
  .location-range_kindergarten::before,
  .location-range_school::before,
  .location-range_juniorhighschool::before,
  .location-range_market01::before,
  .location-range_market02::before,
  .location-range_city-office::before,
  .location-range_station::before {
    display: block;
    text-align: left;
  }
  .location-range_kindergarten::before {
    content: "交野幼稚園";
  }
  .location-range_school::before {
    content: "郡津小学校";
  }
  .location-range_juniorhighschool::before {
    content: "第二中学校";
  }
  .location-range_market01::before {
    content: "スーパーツジトミ";
  }
  .location-range_market02::before {
    content: "万代";
  }
  .location-range_city-office::before {
    content: "交野市役所";
  }
  .location-range_station::before {
    content: "京阪交野線「郡津」駅";
  }
}

.location__completion {
  width: 80%;
  margin: 0 auto;
  font-size: 1.2rem;
}

/**************************************
cv
***************************************/
.cv__button--reservatio,
.cv__button--billing {
  display: block;
  color: #fafafa;
  font-size: 2.6rem;
  font-weight: 600;
  width: 320px;
  padding: 24px 0;
  text-align: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cv__button--reservatio:hover,
.cv__button--billing:hover {
  transform: translateY(5px);
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .cv__button--reservatio,
  .cv__button--billing {
    width: 90%;
    font-size: 2.4rem;
    padding: 16px 0;
  }
}

.cv {
  width: 100%;
  background: #fef3d9;
  padding: 64px 0;
  text-align: center;
}

.cv__title {
  font-size: 3rem;
  margin-bottom: 32px;
}

.cv__buttonbox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cv__button--reservatio {
  background: #8bc777;
  box-shadow: 0 5px 0 #619d61;
  margin-right: 112px;
}

.cv__button--billing {
  background: #f2b35d;
  box-shadow: 0 5px 0 #d38645;
}

@media screen and (max-width: 768px) {
  .cv {
    width: 100%;
    padding: 32px 5%;
    text-align: center;
  }
  .cv__title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
  .cv__buttonbox {
    flex-wrap: wrap;
  }
  .cv__button--reservatio {
    margin-right: 0;
    margin-bottom: 24px;
  }
}

.right-cv__button--billing,
.right-cv__button--reservation {
  display: block;
  position: relative;
  padding: 16px 12px;
  font-size: 2rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  color: #fafafa;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  transition: all 0.3s ease;
  right: -4px;
}

.right-cv__button--billing:hover,
.right-cv__button--reservation:hover {
  right: 0;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .right-cv__button--billing,
  .right-cv__button--reservation {
    padding: 12px 6px;
    font-size: 1.2rem;
    width: 2.4em;
    letter-spacing: 0.2em;
  }
}

.right-cv {
  position: fixed;
  top: 20vh;
  right: 0;
  z-index: 3;
}

.right-cv__button--billing {
  background: #8bc777;
}

.right-cv__button--reservation {
  background: #f2b35d;
}

.right-cv__icon {
  width: 20px;
  margin-bottom: 8px;
  fill: #fafafa;
}

.right-cv__button-enquete {
  position: fixed;
  width: 160px;
  right: 0;
  bottom: 50px;
}

.right-cv__button-enquete:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .right-cv {
    top: 20vh;
    z-index: 5;
  }
  .right-cv__icon {
    width: 16px;
    margin-bottom: 4px;
  }
  .right-cv__button-enquete {
    width: 100%;
    right: 0;
    bottom: 0vh;
  }
}

/**************************************
outline
***************************************/
@keyframes outlinetabanime {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.outline-tab {
  width: 90%;
  margin: 0 auto 160px;
}

.outline-tab__buttonbox {
  display: flex;
  align-items: flex-end;
  margin-bottom: -2px;
}

.outline-tab__button {
  display: block;
/*  cursor: pointer;*/
  /*width: 25%;*/
  /*width:calc(100%/3);*/
/*  width:50%;*/
  text-align: center;
  font-size: 1.8rem;
  padding: 8px 0 8px;
/*  border-top: 8px solid;*/
/*  border-left: 2px solid;*/
/*  border-right: 2px solid;*/
/*  border-top-left-radius: 4px;*/
/*  border-top-right-radius: 4px;*/
  z-index: 0;
  background: #e8e8e8;
  transition: all 0.3s ease;
}

.outline-tab__button:hover,
.outline-tab__button.active {
  padding: 8px 0 16px;
  background: #fafafa;
  z-index: 1;
}

.outline-tab__button-sub {
  font-size: 1.3rem;
}

@media screen and (max-width: 1200px) {
  .outline-tab__content {
    padding: 16px 24px;
  }
  .outline-tab__content.active {
    flex-wrap: wrap;
  }
  .outline-tab__button-sub {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .outline-tab {
    width: 100%;
  }
  .outline-tab__content {
    padding: 16px 8px;
  }
  .outline-tab__buttonbox {
    flex-wrap: wrap;
  }
  .outline-tab__button {
    display: block;
    width: 50%;
/*    width: calc(100%/3); */
    text-align: center;
    font-size: 1.4rem;
    padding: 8px 0;
    border-top: 8px solid;
    border-left: 2px solid;
    border-right: 2px solid;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    z-index: 0;
    background: #e8e8e8;
    transition: all 0.3s ease;
  }
  .outline-tab__button:hover,
  .outline-tab__button.active {
    padding: 8px 0;
    background: #fafafa;
    z-index: 1;
  }
}

.outline-tab__button--k2-1 {
  border-color: #f2a97c;
  border-bottom: 2px solid #fafafa;
  padding: 4px 0;
  line-height: 1;
}

.outline-tab__button--k2-1:hover,
.outline-tab__button--k2-1.active {
  padding: 4px 0 12px;
}

@media screen and (max-width: 768px) {
  .outline-tab__button--k2-1 {
    border-bottom: 2px solid #e8e8e8;
  }
  .outline-tab__button--k2-1:hover,
  .outline-tab__button--k2-1.active {
    border-bottom: 2px solid #fafafa;
    padding: 4px 0;
  }
}

.outline-tab__button--k2-2 {
/*  border-color: #fcd57f;*/
/*  border-bottom: 2px solid #fafafa;*/
  padding: 4px 0;
  line-height: 1;
}

.outline-tab__button--k2-2:hover,
.outline-tab__button--k2-2.active {
  padding: 4px 0 12px;
}

@media screen and (max-width: 768px) {
  .outline-tab__button--k2-2 {
/*    border-bottom: 2px solid #e8e8e8;*/
  }
  .outline-tab__button--k2-2:hover,
  .outline-tab__button--k2-2.active {
/*    border-bottom: 2px solid #fafafa;*/
    padding: 4px 0;
  }
}

.outline-tab__button--k3 {
  border-color: #8bc777;
  border-bottom: 2px solid #fafafa;
}

@media screen and (max-width: 768px) {
  .outline-tab__button--k3 {
    border-bottom: 2px solid #e8e8e8;
  }
  .outline-tab__button--k3:hover,
  .outline-tab__button--k3.active {
    border-bottom: 2px solid #fafafa;
  }
}

.outline-tab__button--i3 {
  border-color: #53b0b3;
  border-bottom: 2px solid #fafafa;
}

@media screen and (max-width: 768px) {
  .outline-tab__button--i3 {
    border-bottom: 2px solid #e8e8e8;
  }
  .outline-tab__button--i3:hover,
  .outline-tab__button--i3.active {
    border-bottom: 2px solid #fafafa;
  }
}

.outline-tab__content {
  display: none;
  width: 100%;
  padding: 32px 40px;
  font-size: 1.4rem;
/*  border: 2px solid;*/
/*  border-bottom-left-radius: 6px;*/
/*  border-bottom-right-radius: 6px;*/
}

.outline-tab__content.active {
  display: flex;
  justify-content: flex-start;
  animation: outlinetabanime ease 0.3s forwards;
}

@media screen and (max-width: 768px) {
  .outline-tab__content {
    padding: 16px 24px;
  }
  .outline-tab__content.active {
    display: block;
  }
}

.outline-tab__content--k2-1 {
  border-color: #f2a97c;
}

.outline-tab__content--k2-2 {
  border-color: #fcd57f;
}

.outline-tab__content--k3 {
  border-color: #8bc777;
}

.outline-tab__content--i3 {
  border-color: #53b0b3;
}

.outline-list {
  display: flex;
  flex-direction: column;
  width: 49%;
  margin-right: 1%;
}

.outline-list__box {
  display: flex;
  margin-bottom: 16px;
}

.outline-list__term {
  width: calc((100% / 3) - 12px);
  margin-right: 12px;
}

.outline-list__description {
  max-width: calc((100% / 3) * 2);
}

@media screen and (max-width: 768px) {
  .outline-list {
    width: 100%;
    margin-right: 0;
  }
  .outline-list__box {
    flex-direction: column;
  }
  .outline-list__term {
    width: 100%;
    margin-right: 0;
  }
  .outline-list__description {
    width: 100%;
    max-width: 100%;
  }
}

.to-top {
  display: block;
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 200px;
  text-align: center;
  padding-top: 58px;
  color: #fafafa;
  background: #65a9dc;
}

.to-top::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 44px;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  border-top: 2px solid #fafafa;
  border-left: 2px solid #fafafa;
}

.to-top:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .to-top {
    margin: 0 auto 120px;
  }
}

.lg,
.pc {
  display: block;
}

.sm,
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .lg,
  .pc {
    display: none;
  }
  .sm,
  .sp {
    display: block;
  }
}
