@charset "UTF-8";
/*note: INDEXの表示は、コメントの「 index: 」でハイライト表示してください。*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-style: normal;
  box-sizing: border-box;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: クリアフィックス*/
/* Class と ステークホルダー の名称設定 */
/* 処理 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

:root {
  --base: #009261;
  --main: #1446b4;
  --white: #fff;
  --black: #000;
  --width: 1440;
}
@media only screen and (max-width: 768px) {
  :root {
    --width: 375;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
body {
  color: #000;
  position: relative;
  overflow-y: hidden !important;
}

.green_txt,
.green_ttl {
  color: var(--base);
}

.maison_ttl {
  color: #d8959e;
}

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

a {
  transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }
}

picture {
  display: block;
  width: 100%;
}
picture img {
  width: 100%;
}

.trigger {
  box-sizing: border-box;
}

.slideTrain,
.slideUpTrain {
  opacity: 0;
}

.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url(../images/bg01.jpg);
  background-position: center 0;
  background-size: cover;
  pointer-events: none;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: overlay */
#overlay {
  display: none;
}
@media only screen and (max-width: 768px) {
  #overlay.active {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main */
.main {
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .main {
    margin-top: 48px;
  }
}

section {
  position: relative;
}

.container {
  margin: auto;
  max-width: 780px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sec .img {
  display: block;
}
.sec .note {
  font-size: clamp(12px, 1.25vw, 18px);
  text-align: center;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .sec .note {
    text-align: left;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main_visual */
.main_visual {
  position: relative;
}
.main_visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: url(../images/line.jpg) repeat-x left center/contain;
}
@media only screen and (max-width: 768px) {
  .main_visual::before {
    height: 18px;
    background-size: cover;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: box1 */
.sec_box1 {
  background-color: #009360;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .sec_box1 {
    padding: 30px 0;
  }
}
.sec_box1 .block {
  display: grid;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .block {
    gap: 20px;
  }
}
.sec_box1 .block .box1 p {
  color: #fff;
  font-size: clamp(12px, 24 / var(--width) * 100vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}
.sec_box1 .block .box1 p.notes {
  color: #fff;
  font-size: clamp(8px, 16 / var(--width) * 100vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.5em;
  text-align: right;
}
.sec_box1 .block .box1 p.notes.text-center {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .block .box1 p.notes {
    font-size: clamp(8px, 9 / var(--width) * 100vw, 12px);
  }
}
@media only screen and (max-width: 768px) {
  .sec_box1 .block .box1 p {
    font-size: clamp(15px, 15 / var(--width) * 100vw, 3vw);
  }
}
.sec_box1 .block .icon {
  width: 30%;
  margin: auto;
}
.sec_box1 .block .icon img {
  transform: translateX(70px);
}
@media only screen and (max-width: 768px) {
  .sec_box1 .block .icon {
    width: 40%;
  }
  .sec_box1 .block .icon img {
    transform: translateX(30%);
  }
}
.sec_box1 .block .box2 {
  border: 5px solid #fff;
  border-top: none;
  border-radius: 0 0 30px 30px;
  box-sizing: border-box;
  padding: 30px;
  padding-right: 15px;
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .block .box2 {
    border-width: 3px;
    border-radius: 0 0 15px 15px;
    padding: 15px;
    padding-right: 5px;
    padding-top: 0;
  }
}
.sec_box1 .service {
  background-color: #199D70;
  margin-top: 80px;
  padding: 30px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .service {
    margin-top: 40px;
    padding: 15px;
  }
}
.sec_box1 .service .copy {
  position: absolute;
  top: -30px;
  left: -5px;
  width: 60%;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .service .copy {
    top: -7%;
    width: 75%;
  }
}
.sec_box1 .service h3 {
  margin: auto;
  margin-bottom: 1em;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .service h3 {
    width: 90%;
  }
}
.sec_box1 .service .flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.sec_box1 .service .flex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  background-color: #fff;
}
.sec_box1 .service .flex .box + .box {
  margin-top: -12px;
}
.sec_box1 .service .flex p {
  color: #fff;
  font-size: clamp(8px, 16 / var(--width) * 100vw, 16px);
  line-height: 1.5;
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .service .flex {
    gap: 30px;
  }
  .sec_box1 .service .flex::before {
    width: 1px;
  }
  .sec_box1 .service .flex .box + .box {
    margin-top: -7px;
  }
  .sec_box1 .service .flex p {
    font-size: clamp(9px, 10 / var(--width) * 100vw, 12px);
  }
}
.sec_box1 .button {
  margin: 40px auto;
  max-width: 500px;
}
.sec_box1 .button a {
  background-color: #FFF000;
  border-radius: 100vw;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  position: relative;
}
.sec_box1 .button a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 100%;
  background-color: #FFD100;
  border-radius: 100vw;
  transition: transform 0.4s;
  z-index: -1;
}
.sec_box1 .button a:hover {
  opacity: 1;
}
.sec_box1 .button a:hover::after {
  transform: translateY(-8px);
}
.sec_box1 .button .label {
  color: #FF0000;
  font-size: clamp(16px, 28 / var(--width) * 100vw, 28px);
  font-weight: 600;
  text-align: center;
  width: calc(100% - 60px);
}
.sec_box1 .button .arrow {
  width: 60px;
  height: 60px;
  background: url(../images/arrow-red.svg) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sec_box1 .button {
    margin: 20px auto;
    width: 80%;
  }
  .sec_box1 .button a {
    height: 54px;
  }
  .sec_box1 .button a .label {
    font-size: clamp(16px, 16 / var(--width) * 100vw, 16px);
    width: calc(100% - 35px);
  }
  .sec_box1 .button a .arrow {
    width: 35px;
    height: 35px;
  }
  .sec_box1 .button a::after {
    bottom: -5px;
  }
  .sec_box1 .button a:hover::after {
    transform: translateY(-5px);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: box2 */
.sec_box2 {
  background-color: #FFFFB2;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .sec_box2 {
    padding: 30px 0;
  }
}
.sec_box2 h3 {
  margin: auto;
  margin-bottom: 30px;
  width: 85%;
}
.sec_box2 .notes {
  color: #000;
  font-size: clamp(8px, 16 / var(--width) * 100vw, 16px);
  line-height: 1.5;
  margin-top: 0.5em;
}
@media only screen and (max-width: 768px) {
  .sec_box2 .notes {
    font-size: clamp(8px, 10 / var(--width) * 100vw, 12px);
  }
}
.sec_box2 .button {
  display: grid;
  gap: 20px;
  margin: 50px auto 0;
  max-width: 500px;
}
.sec_box2 .button a {
  background-color: #019261;
  border-radius: 100vw;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1em 1.5em;
  position: relative;
}
.sec_box2 .button a.bg_orange {
  background-color: #F15A24;
}
.sec_box2 .button a.bg_blue {
  background-color: #0071BC;
}
.sec_box2 .button .label {
  color: #fff;
  font-size: clamp(16px, 28 / var(--width) * 100vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  width: calc(100% - 50px);
}
.sec_box2 .button .arrow {
  width: 50px;
  height: 50px;
  background: url(../images/arrow-green.svg) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sec_box2 .button {
    gap: 10px;
    margin-top: 30px;
    width: 82%;
  }
  .sec_box2 .button a {
    height: 60px;
    padding: 1em;
  }
  .sec_box2 .button a .label {
    font-size: clamp(15px, 15 / var(--width) * 100vw, 16px);
    width: calc(100% - 30px);
  }
  .sec_box2 .button a .arrow {
    width: 30px;
    height: 30px;
  }
  .sec_box2 .button a::after {
    bottom: -5px;
  }
  .sec_box2 .button a:hover::after {
    transform: translateY(-5px);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: service */
#service-disney {
  background-color: #ffea52;
}

#service {
  background-color: #FCDFE0;
}

.sec_service {
  padding: 60px clamp(5%, 8.3333333333%, 120px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_service {
    padding: 30px 5% 40px;
  }
}
.sec_service .container {
  background: #fff;
  border-radius: 30px;
  padding: 60px clamp(5%, 4.1666666667%, 60px);
}
@media only screen and (max-width: 768px) {
  .sec_service .container {
    border-radius: 15px;
    padding: 30px 5% 40px;
    width: 100%;
  }
}
.sec_service .title {
  border: 1px dashed var(--base);
  border-width: 2px 0;
  color: var(--base);
  font-size: clamp(21px, 30 / var(--width) * 100vw, 30px);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 20px 0;
}
.sec_service .title span {
  display: inline-block;
  font-size: clamp(24px, 35 / var(--width) * 100vw, 35px);
  padding-bottom: 0.3em;
  position: relative;
}
.sec_service .title span:before {
  position: absolute;
  content: "";
  top: 0;
  left: -0.5em;
  width: 2px;
  height: 90%;
  transform: rotate(-15deg);
  background: var(--base);
}
.sec_service .title span:after {
  position: absolute;
  content: "";
  top: 0;
  right: -0.5em;
  width: 2px;
  height: 90%;
  transform: rotate(15deg);
  background: var(--base);
}
@media only screen and (max-width: 768px) {
  .sec_service .title {
    font-size: clamp(14px, 4vw, 21px);
  }
  .sec_service .title span {
    font-size: clamp(18px, 5.6vw, 21px);
  }
}
.sec_service .service_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_list {
    gap: 40px;
  }
}
.sec_service .service_bnr {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_bnr {
    gap: 20px;
  }
}
.sec_service .service_bnr .border {
  border: 1px solid #B3B3B3;
}
.sec_service .button {
  display: block;
  max-width: 300px;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  .sec_service .button {
    margin: 15px auto;
    width: 90%;
  }
}
.sec_service .disney {
  max-width: 780px;
  margin: 2em auto 0;
  width: 90%;
}
.sec_service .disney a {
  color: var(--base);
  position: relative;
  text-decoration: underline;
}
.sec_service .disney a:after {
  content: "";
  filter: invert(42%) sepia(9%) saturate(5656%) hue-rotate(118deg) brightness(70%) contrast(101%);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../images/arrow.svg) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sec_service .disney {
    margin-top: 1em;
    width: 100%;
  }
  .sec_service .disney a {
    font-size: clamp(12px, 3.7333333333vw, 16px);
  }
  .sec_service .disney a:after {
    width: 12px;
    height: 12px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: pagetop_btn */
.pagetop_btn {
  position: relative;
}
.pagetop_btn .pagetop {
  display: block;
  padding: 20px;
  color: white;
  background: var(--base);
  border: 3px solid var(--base);
  bottom: 24px;
  right: 24px;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.pagetop_btn .pagetop:hover {
  color: var(--base);
  background: white;
  border: 3px solid var(--base);
}
.pagetop_btn .pagetop.active {
  opacity: 1;
  visibility: visible;
}
.pagetop_btn .pagetop.absolute {
  position: absolute;
  top: -100px;
  bottom: auto;
}
.pagetop_btn .pagetop svg {
  fill: currentcolor;
}

@media only screen and (max-width: 768px) {
  .pagetop_btn .pagetop {
    right: 4%;
    padding: 0.8rem;
  }
  .pagetop_btn .pagetop.absolute {
    top: -90px;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
footer {
  padding: 8px 20px 10px;
  background-color: var(--base);
  color: #fff;
  font-weight: 500;
  position: relative;
}
footer .container {
  display: grid;
  grid-template: auto auto/auto 264px;
}
footer .link {
  padding-top: 0.3rem;
  font-size: 12px;
  line-height: 1.4;
  margin-right: 1rem;
}
footer .link a {
  color: white;
  text-decoration: inherit;
  text-decoration-skip-ink: auto;
  margin-right: 1rem;
}
footer .link span {
  color: white;
}
footer .banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 264px;
  height: 54px;
  color: #666;
  grid-area: 1/2/3/3;
}
footer .banner img {
  position: absolute;
}
footer .banner span.t {
  position: relative;
  padding: 0.4em 1em 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0;
}
footer .copyright {
  font-size: 10px;
  margin-top: 1rem;
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-bottom: 20px;
    text-align: center;
  }
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    margin: 0 auto;
  }
  footer .banner {
    order: 1;
    margin-top: 8px;
  }
}/*# sourceMappingURL=style.css.map */