@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Sawarabi+Gothic&display=swap");
:root {
  --blue: #3b72a6;
  --dark_blue: #2a5377;
  --yellow: #ffc148;
  --green: #476718;
  --white: #fff;
  --gray: #888888;
  --red: #c00;
  --base-gray: #f0f0f0;
  --font: #333333;
  font-size: 10px;
}

body {
  color: var(--font);
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--base-gray);
  font-weight: 500;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.wrap_primary {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .wrap_primary {
    padding: 0 1.5rem;
  }
}
.wrap_primary.wide {
  max-width: 1200px;
}

.inner_wrap {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.footer {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 10rem;
  }
}
.footer .background {
  position: relative;
  /* bottom: -6rem; */
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer .logo{
  width:60%;
  max-width:400px;
  margin:0 auto;
}
.footer .logo img{
  width:100%;
}
@media screen and (max-width: 768px) {
  .footer .background {
    bottom: 0;
  }
}
.footer .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.footer .main_area {
  background-color: var(--white);
  color: var(--font);
  padding: 5rem 13rem 2.8rem 13rem;
}
@media screen and (max-width: 768px) {
  .footer .main_area {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .main_area .logo {
    font-size: 1rem;
  }
}
.footer .main_area .copyright {
  margin-top: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .main_area .copyright {
    font-size: 1rem;
  }
}
.footer .toTop_btn {
  position: fixed;
  bottom: 6rem;
  right: 6rem;
  z-index: 8888;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .footer .toTop_btn {
    bottom: 3rem;
    right: 1rem;
  }
}
.footer .toTop_btn.hidden {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
}
.footer .toTop_btn.show {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.3s;
}
.footer .toTop_btn a {
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .toTop_btn a {
    width: 4rem;
    height: 4rem;
  }
}
.footer .toTop_btn .arrow_up {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #3b72a6;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .footer .toTop_btn .arrow_up {
    width: 1.3rem;
    height: 1.3rem;
  }
}

a {
  display: block;
}
a.anchor_link {
  position: relative;
  padding: 2rem 8.6rem 2rem 5rem;
  border: 1px solid var(--blue);
  border-radius: 4rem;
  background-color: transparent;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  color: var(--blue);
  font-size: 1.9rem;
  font-weight: bold;
  white-space: none;
  box-sizing: border-box;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  a.anchor_link {
    font-size: 1.3rem;
    padding: 1rem 2.3rem 1rem 1rem;
  }
}
a.anchor_link::after {
  content: "";
  position: absolute;
  right: 4.3rem;
  top: 5px;
  bottom: 0;
  margin: auto;
  display: block;
  background-image: url(../images/arrow_down.png);
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  a.anchor_link::after {
    width: 1.3rem;
    height: 1.3rem;
    right: 0.7rem;
  }
}
a.anchor_link:hover {
  background-color: var(--white);
  transition-duration: 0.3s;
}

.main_area {
  position: relative;
  z-index: 10;
}

.floating_btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}
.floating_btn a {
  border-radius: 0 0 0 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow);
  padding: 2.6rem 3.2rem 3.4rem 3.2rem;
  color: var(--font);
  font-weight: bold;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  display: block;
  transition-duration: 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .floating_btn a {
    padding: 1.2rem 1.5rem 1.8rem 1.8rem;
    font-size: 1.2rem;
  }
}
.floating_btn a:hover {
  background-color: var(--white);
  transition-duration: 0.3s;
}
.floating_btn .icon {
  width: 6.3rem;
  display: block;
  margin: 1.3rem auto 0 auto;
}
@media screen and (max-width: 768px) {
  .floating_btn .icon {
    width: 4rem;
  }
}

.firstview {
  position: relative;
  color: var(--white);
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 15.1rem 0 9.1rem 0;
}
@media screen and (max-width: 768px) {
  .firstview {
    padding: 14rem 0 4rem 0;
  }
}
.firstview .background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
}
.firstview .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  z-index: 0;
}
.firstview .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .firstview .background img {
    -o-object-position: left;
       object-position: left;
  }
  .firstview .background::before {
    background-color: rgba(0, 0, 0, 0.25);
  }
}
.firstview .maincopy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .firstview .maincopy {
    padding: 0 2rem;
    max-width: 50rem;
  }
}
.firstview .maincopy .sub {
  max-width: 52rem;
  padding-bottom: 2rem;
}
.firstview .maincopy .main {
  max-width: 50rem;
  padding-bottom: 5.3rem;
}
.firstview .schedule {
  margin: 0 auto;
  max-width: 38rem;
  padding-bottom: 4.7rem;
}
.firstview .schedule img {
  width: 100%;
}
.firstview .add_text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .firstview .schedule {
    margin: 0 auto;
    width: 90%;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .firstview .add_text {
    padding: 0 1rem;
  }
}
.target{
  text-align: center;
}
.target span{
  font-size:20px;
  display: inline-block;
  text-align: center;
  border:1px solid #fff;
  padding:.2em 1em;
  margin-bottom:1em;
}
@media screen and (max-width: 768px) {
  .target span{
    font-size:16px;
  }
}
.index_area {
  padding: 4.8rem 0;
}
@media screen and (max-width: 768px) {
  .index_area {
    padding: 4rem 0;
  }
}
.index_area .anchor_link_list {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .index_area .anchor_link_list {
    gap: 1rem;
  }
}
.index_area .anchor_link_list a {
  flex: 1 1 48%;
}

h2.icon_title {
  font-size: 2.8rem;
  line-height: 1.32;
  vertical-align: middle;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  h2.icon_title {
    font-size: 1.7rem;
    letter-spacing: -.05em;
  }
}
h2.icon_title .icon {
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}
h2.icon_title .icon img {
  height: 1.5em;
}
@media screen and (max-width: 768px) {
  h2.icon_title .icon img {
    height: 1.5em;
  }
}

h2.large_title {
  position: relative;
  padding: 10rem 0 12rem 0;
}
@media screen and (max-width: 768px) {
  h2.large_title {
    padding: 5rem 0 8rem 0;
  }
}
h2.large_title .background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
h2.large_title .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
h2.large_title .background::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
h2.large_title .en {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.5rem auto;
  image-rendering: pixelated;
}
@media screen and (max-width: 768px) {
  h2.large_title .en {
    max-width: 10rem;
    margin: 0 auto 1rem auto;
  }
}
h2.large_title .ja {
  font-size: 3.2rem;
  color: var(--white);
  text-align: center;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  h2.large_title .ja {
    font-size: 1.8rem;
  }
}

p.lead_text {
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  p.lead_text {
    font-size: 1.6rem;
    padding-bottom: 3rem;
  }
}

.block_title {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .block_title {
    font-size: 1.7rem;
  }
}
.block_title.deco {
  position: absolute;
  top: -1rem;
  left: -1px;
}
.block_title.deco .design_title {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--blue);
  color: var(--white);
  font-weight: bold;
  margin-top: -6.5rem;
}
.block_title.deco .design_title:before, .block_title.deco .design_title:after {
  content: "";
  position: absolute;
  display: block;
}
.block_title.deco .design_title:before {
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #2e5c85;
}
.block_title.slash {
  line-height: 1.85;
  position: relative;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  margin: 0 auto;
}
.block_title.slash::before, .block_title.slash::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1.5em;
  background: var(--font);
}
.block_title.slash::before {
  transform: rotate(-30deg);
  left: 0;
}
.block_title.slash::after {
  transform: rotate(30deg);
  right: 0;
}
.block_title.bottom_line {
  color: var(--blue);
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .block_title.bottom_line {
    font-size: 2rem;
    padding-bottom: 4rem;
  }
}
.block_title.bottom_line::after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 2px;
  background-color: var(--blue);
  margin: 2.7rem auto 0 auto;
}
@media screen and (max-width: 768px) {
  .block_title.bottom_line::after {
    height: 1px;
  }
}

.column4 {
  margin-top: 1.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.column4 .item {
  flex: 0 0 228px;
}
@media screen and (max-width: 768px) {
  .column4 .item {
    flex: 0 0 24%;
    min-width: 16rem;
  }
}
@media screen and (max-width: 380px) {
  .column4 .item {
    flex: 0 0 80%;
  }
}
.column4 .item .image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.column4 .item .image::before {
  content: "";
  display: block;
  padding-top: 73.68%;
}
.column4 .item .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.column4 .item .text {
  color: var(--white);
  background-color: var(--blue);
  text-align: center;
  font-size: 1.6rem;
  padding: 1.2rem;
  box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .column4 .item .text {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}
@media screen and (max-width: 380px) {
  .column4 .item .text {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

.about_service {
  padding-top: 6px;
}

.conditions {
  padding: 5.9rem 0 10rem 0;
}
@media screen and (max-width: 768px) {
  .conditions {
    padding: 4rem 0;
  }
}

.list_block {
  padding: 3.9rem 5rem;
  background-color: var(--white);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .list_block {
    padding: 1rem 2rem;
  }
}

.icon_list {
  list-style: none;
  padding: 0;
}
.icon_list .list_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.5;
  font-size: 1.8rem;
  gap: 3rem;
  font-weight: 500;
  padding: 1em;
}

@media screen and (max-width: 768px) {
  .icon_list .list_item {
    padding: 1rem;
    gap: 2rem;
    font-size: 1.6rem;
  }
}
.icon_list .list_item .icon {
  display: block;
  width: 31px;
  flex: 0 0 31px;
}
.icon_list .list_item .icon img {
  margin: 0 auto;
}

.attention {
  padding-top: 2.3rem;
  font-size: 1.4rem;
  line-height: 1.42;
}
@media screen and (max-width: 768px) {
  .attention {
    line-height: 1.8;
  }
}

.column3_list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5%;
  margin-bottom:0;
  margin-top:0
}
@media screen and (max-width: 768px) {
  .column3_list {
    gap: 1rem;
  }
}
.column3_list .list_item {
  flex: 1 1 30%;
  min-width: 28rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.column3_list .list_item a{
  text-decoration: none;
}
.column3_list .list_item a:hover{
  opacity: .85;
}
.column3_list .list_item.h0{
  height: 0;
  margin-bottom:0;
}
@media screen and (max-width: 768px) {
  .column3_list .list_item {
    min-width: initial;
    flex: 1 1 45%;
    margin-bottom: 3rem;
  }
}
.column3_list .list_item .name {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.6;
  margin-top: 1.6rem;
  flex-grow: 1;
  height: -webkit-max-content;
}
@media screen and (max-width: 768px) {
  .column3_list .list_item .name {
    font-size: 1.5rem;
  }
}
.column3_list .list_item .address {
  font-size: 1.6rem;
  font-weight: 500;
  flex-grow: 1;
  height: -webkit-max-content;
  color:#333;
}
@media screen and (max-width: 768px) {
  .column3_list .list_item .address {
    font-size: 1.4rem;
  }
}
.googlemap {
  margin-top: .5rem;
}
.googlemap a {
  border: 1px solid var(--gray);
  border-radius: 5px;
  padding: 0 5px;
  font-size: 1.2rem;
  color: var(--gray);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition-duration: 0.3s;
}
.googlemap a:hover {
  background-color: var(--gray);
  color: var(--white);
  transition-duration: 0.3s;
}
.detail_link a {
  display: inline-block;
  padding: 1.5px 30px 1.5px 20px;
  border-radius: 5rem;
  background-color: var(--yellow);
  color: var(--font);
  position: relative;
  text-decoration: none;
  text-align: center;
  margin-top: 1rem;
  margin-left: -0.2rem;
  vertical-align: middle;
  border: 1px solid var(--yellow);
  transition-duration: 0.3s;
}
.detail_link.stay-list{
  padding-bottom: 4rem;
  text-align: center;
  margin-top:10px;
  /* padding-left:calc(50% - 14em) */
}
.detail_link.stay-list a{
    margin-top: 0;
    padding: 1.2em;
    font-size:1.1em;
    font-weight: bold;
    width:100%;
    max-width: 600px;
  }
  .detail_link a.fin{
    background-color: #ccc;
    pointer-events: none;
    border:none;
    color:#888;
  }
@media screen and (max-width: 768px) {
  .detail_link a {
    font-size: 1.4rem;
  }
  .detail_link.stay-list{
    padding-bottom: 4rem;
  }
  .detail_link.stay-list a{
    padding: .75em 2em;
    font-size:1.4rem;
  }
}
.detail_link a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--font);
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 15px;
  bottom: 0;
  top: 1px;
  margin: auto;
  transition-duration: 0.3s;
}
.detail_link a:hover {
  border: 1px solid var(--font);
  background-color: var(--white);
  color: var(--font);
  transition-duration: 0.3s;
}
.detail_link a:hover::after {
  transition-duration: 0.3s;
  color: var(--font);
}
.section .content_block{
  background-color: var(--white);
  margin-top: -5rem;
  padding: 5.2rem 4.5rem 1rem 4.5rem;
  box-shadow: 0 15px 16px rgba(26, 26, 26, 0.11);
}
.section .content_block.b02 {
  margin-top:5rem;
}
@media screen and (max-width: 768px) {
  .section .content_block {
    padding: 3rem 1.5rem;
    box-shadow: 0 0px 5px rgba(26, 26, 26, 0.11);
  }
  .section .content_block.b02 {
    margin-top:2rem;
  }
}

.column2 {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .column2 {
    flex-direction: column;
  }
}
.column2 .col {
  flex: 1 1 50%;
  line-height: 2;
  font-size: 1.5rem;
  color:#333;
  text-decoration:none;
}
.column2 a.col:hover {
  opacity: .85;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .column2 .col {
    flex: 1 1 100%;
  }
}
.column2 .col .small {
  margin-top: 2em;
}
.column2 .col .small p {
  display: flex;
  align-items: baseline;
  margin-bottom: 1em;
  font-size: 1.1rem;
  line-height: 1.5;
}
.column2 .col .small p::before {
  content: "※";
  display: inline-block;
}

.stay {
  padding-bottom: 8.5rem;
}
.stay h3{
  margin-bottom:1em;
  color:var(--blue);
}
.stay h4{
  font-size:14px;
  margin-bottom:1em;
}
.stay .note{
  border:1px solid #ddd;
  padding:20px;
  margin-bottom: 50px;
}
.stay .note dl{
  display: flex;
  flex-wrap: wrap;
  font-weight: normal;
  font-size: 80%;
}
.stay .note dt{
  width:30%;
  max-width: 250px;;
  padding:.5em 0;
  font-weight: bold;
}
.stay .note a{
  display: inline;
}
.stay .note dd{
  width:calc(100% - 250px);
  padding:.5em 0;
}
.stay .note dd .fc-red{
  color:var(--red);
}
.stay .note dt:not(:last-of-type),
.stay .note dd:not(:last-of-type){
  border-bottom:1px dotted #ddd;
}
@media screen and (max-width: 768px) {
  .stay {
    padding-bottom: 4rem;
  }
  .stay h3{
    font-size:15px;
  }
  .stay h4{
    font-size:14px;
  }
  .stay .note{
    margin-bottom: 0;
  }
  .stay .note dl{
    display: block;
  }
  .stay .note dt{
    width:100%;
    max-width: 250px;;
    padding:.7em 0 0;
    border-bottom: none!important;
  }
  .stay .note a{
    display: inline;
  }
  .stay .note dd{
    width:100%;
    padding:0 0 .8em;
  }
}

.gallary {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 4rem 0;
}
@media screen and (max-width: 768px) {
  .gallary {
    flex-direction: column;
    gap: 2rem;
    margin: 4rem 0 6rem 0;
  }
}
.gallary figure {
  max-width: calc(50% - 1rem);
}
@media screen and (max-width: 768px) {
  .gallary figure {
    max-width: initial;
  }
}
.gallary figure img {
  width: 100%;
}
.gallary figure figcaption {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 8px;
}

.card {
  border: 1px solid #3b72a6;
  padding: 4.5rem 3.3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .card {
    padding: 3.5rem 1.5rem 2rem 1.5rem;
  }
}
.card .name {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
}
.card .address {
  font-size: 1.6rem;
  font-weight: 500;
}
.card .column2 .col.image {
  flex: 1 1 45%;
  overflow: hidden;
  padding-right: 2rem;
  padding-top: 0.5rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .card .column2 .col.image {
    flex: 1 1 100%;
    padding: 0;
  }
}
.card .column2 .col.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* .card .detail_link {
  margin-top: 2.8rem;
} */
@media screen and (max-width: 768px) {
  .card .detail_link {
    flex-direction: column;
    margin: 1rem 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .card .detail_link a {
    margin: 0;
  }
}

.point_list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0.6rem 0;
}
.point_list li {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  line-height: 1.3;
  padding-bottom: 9px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .point_list li {
    font-size: 1.4rem;
  }
}
.point_list li::before {
  content: "";
  display: block;
  position: relative;
  top: 2px;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--blue);
  flex: 0 0 1.5rem;
}

.primary strong {
  color: var(--blue);
}
.primary .add {
  display: block;
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.plan_article {
  padding-bottom: 4rem;
}
.plan_article:not(:last-of-type) {
  margin-bottom: 3.5rem;
  border-bottom: 1px dashed var(--gray);
}
@media screen and (max-width: 768px) {
  .plan_article:last-of-type {
    padding-bottom: 0;
  }
}

.cta {
  display: block;
  background-color: var(--yellow);
  border-radius: 50rem;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  padding: 4.7rem;
  display: flex;
  gap: 3.5rem;
  position: relative;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--font);
  margin-top: 10rem;
  margin-bottom: -10rem;
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .cta {
    margin-top: 6rem;
    font-size: 1.8rem;
    padding: 2.5rem 3rem;
    gap: 1.5rem;
  }
}
.cta .icon {
  display: inline-block;
  height: 1.8em;
  flex: 0 0 auto;
}
.cta .icon img {
  height: 100%;
  width: auto;
}
.cta::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--font);
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition-duration: 0.3s;
}
.cta:hover {
  background-color: var(--white);
  transition-duration: 0.3s;
}/*# sourceMappingURL=style.css.map */