@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.bg-blue {
  background-color: #ECF3F9;
}

.bg-ivory {
  background-color: #F6F1EB;
}

html {
  width: 100%;
  height: auto;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #013760;
  position: relative;
  font-size: 25px;
  line-height: 47px;
  letter-spacing: 0.5px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3px;
    max-width: 568px;
  }
}

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

p {
  margin-top: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  p {
    margin-top: 0;
    margin-bottom: 20px;
  }
  p:last-child {
    margin-bottom: 0;
  }
}

a {
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover {
  filter: brightness(1.2);
  transform: translateY(-5px);
}

.inner-width {
  width: 1170px;
  margin: 0 auto;
}

.txt-yellow {
  color: #faf092;
}

.mk-yellow {
  background: linear-gradient(transparent 60%, #fdd54d 60%);
  font-weight: 700;
}

.mk-yellow2 {
  border-bottom: 3px solid #fdd54d;
  font-weight: 700;
}

@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

.mb_0 {
  margin-bottom: 0 !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

@media (max-width: 768px) {
  .mb_20-sp {
    margin-bottom: 20px !important;
  }
}

figcaption {
  font-size: 1em !important;
  margin: initial;
  opacity: initial;
  padding: initial;
}

.youtube {
  margin-top: 80px;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .youtube {
    margin-top: 40px;
  }
}

iframe {
  width: 100%;
  height: 100%;
}

.bg-tatami {
  background: url("../images/bg/tatami.jpg");
  background-size: contain;
}
@media (max-width: 768px) {
  .bg-tatami {
    background-size: auto;
  }
}

.firstview_ttl {
  padding: 25px 0;
  margin: 0 auto;
  text-align: center;
  background-color: #013760;
  color: #fffefb;
  font-size: 33px;
  letter-spacing: 1.98px;
}
@media (max-width: 768px) {
  .firstview_ttl {
    padding: 13px 0;
    font-size: 12px;
  }
}

.news {
  width: 1170px;
  margin-inline: auto;
  padding-block: 5rem 0;
}
@media (max-width: 768px) {
  .news {
    width: 94vw;
    padding-block: 2rem 0;
  }
}
.news__box {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 768px) {
  .news__box {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.news h2 {
  text-align: center;
  font-size: 3rem;
  margin-block: 0 2rem;
}
@media (max-width: 768px) {
  .news h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
  }
}
.news .c-latest {
  flex: 5;
}
.news .c-latest__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2rem;
  margin-block: 0;
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.85);
  border: 2px dashed #f3ebdc;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .news .c-latest__list {
    font-size: 1rem;
    gap: 1.2rem;
    padding: 1.4rem 1.2rem;
  }
}
.news .c-latest__item {
  line-height: 1;
  border-bottom: 1px dashed #f1dfbb;
  padding-bottom: 0.8em;
}
.news .c-latest__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .news .c-latest__item:last-child {
    display: none;
  }
  .news .c-latest__item:nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.news .c-latest__link {
  display: flex;
  flex-direction: row;
  color: #333;
  text-decoration: none;
}
@media (max-width: 768px) {
  .news .c-latest__link {
    flex-direction: column;
  }
}
.news .c-latest__date {
  display: inline-block;
  text-align: center;
  width: 182px;
  background: #013760;
  color: #FFF;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  font-weight: 300;
  padding: 4px 5px 8px 10px;
  border-radius: 50px;
  margin-right: 1rem;
  place-self: center;
}
@media (max-width: 768px) {
  .news .c-latest__date {
    place-self: baseline;
  }
}
@media (max-width: 768px) {
  .news .c-latest__date {
    width: fit-content;
    display: block;
    font-size: 1rem;
    padding: 3px 6px 5px 12px;
    margin-bottom: 6px;
  }
}
.news .c-latest__title {
  display: inline-block;
  flex: 1;
  letter-spacing: 1px;
  place-self: center;
}
@media (max-width: 768px) {
  .news .c-latest__title {
    line-height: 1.25;
    place-self: baseline;
  }
}
.news .c-latest__more {
  display: none;
  text-align: right;
}
.news .c-latest__more a {
  text-decoration: none;
}
.news .c-latest__more a:after {
  font: var(--fa-font-solid);
  content: "\f35a";
  margin-left: 0.4em;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}
.news .line-friend {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .news .line-friend {
    background: #FFF;
    padding: 0.5rem 12vw 1.5rem;
    border-radius: 50px;
    gap: 0rem;
  }
}
.news .line-friend__inner {
  display: flex;
  flex-direction: column;
}
.news .line-friend__txt {
  font-size: 0.85rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .news .line-friend__txt {
    font-size: 4vw !important;
    letter-spacing: 0.1px;
    margin-bottom: 5px;
  }
}

.about {
  width: 1170px;
  margin-inline: auto;
  padding-block: 80px 60px;
}
@media (max-width: 768px) {
  .about {
    width: 94vw;
    padding-block: 50px;
  }
}
.about_intr {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .about_intr {
    margin-bottom: 0;
  }
}
.about_intr h2 {
  font-size: 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .about_intr h2 {
    font-size: 2rem;
    letter-spacing: 0px;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .about_intr > p {
    text-align: left;
  }
}
.about_txt:nth-child(odd) {
  margin-top: -30px;
}
@media (max-width: 768px) {
  .about_txt:nth-child(odd) {
    margin-top: 20px;
  }
}
.about_txt figure {
  display: grid;
  align-items: center;
  grid-template-areas: "left right";
  grid-template-columns: 1fr 510px;
}
@media (min-width: 769px) {
  .about_txt figure figcaption p {
    margin-bottom: 0px;
  }
}
.about_txt figure.rt {
  margin-right: 0;
  justify-content: right;
  grid-template-columns: 390px 510px;
  gap: 130px;
}
.about_txt figure.lt {
  margin-left: 20px;
  grid-template-columns: 510px 1fr;
  gap: 70px;
}
.about_txt figure .left {
  grid-area: left;
}
.about_txt figure .right {
  grid-area: right;
}
@media (max-width: 768px) {
  .about_txt .lt,
  .about_txt .rt {
    display: flex;
    flex-direction: column;
    gap: 25px !important;
    margin-left: auto;
  }
  .about_txt .rt img.right {
    width: 85%;
    margin: 0 0 0 auto;
  }
  .about_txt .rt figcaption.left {
    margin: 0 auto 0 0;
    padding-left: 20px;
  }
  .about_txt .lt {
    margin: 0 !important;
  }
  .about_txt .lt img.left {
    width: 85%;
    margin: 0 auto 0 0;
    padding-left: 5px;
  }
  .about_txt .lt figcaption.right {
    margin: 0 0 0 auto;
    padding-right: 5px;
  }
}

.cta__btn {
  width: fit-content;
  margin: 0 auto;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .cta__btn {
    padding: 40px 20px 30px;
  }
}
.cta__catch {
  position: relative;
  text-align: center;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 0px;
}
.cta__catch:before {
  position: absolute;
  content: "＼";
  bottom: 0px;
  left: -2rem;
}
@media (max-width: 768px) {
  .cta__catch:before {
    left: -1rem;
  }
}
.cta__catch:after {
  position: absolute;
  content: "／";
  bottom: 0px;
  right: -2rem;
}
@media (max-width: 768px) {
  .cta__catch:after {
    right: -1rem;
  }
}

.solved {
  background-color: #f6f2eb;
  padding: 64px 0 90px;
}
.solved_wrap {
  margin: 0 auto;
  width: 1170px;
}
@media (max-width: 768px) {
  .solved_wrap {
    width: 94vw;
  }
}
.solved_intr {
  text-align: center;
  margin-bottom: 50px;
}
.solved_txt figure {
  display: grid;
  align-items: center;
  grid-template-areas: "left right";
  gap: 30px;
}
.solved_txt figure.lt {
  margin-left: -60px;
  grid-template-columns: 535px 1fr;
}
.solved_txt figure.rt {
  margin-top: 90px;
  margin-right: -60px;
  justify-content: right;
  grid-template-columns: 1fr 535px;
}
.solved_txt figure .left {
  grid-area: left;
}
.solved_txt figure .right {
  grid-area: right;
}

.reason {
  background: url(../images/bg/reason.jpg);
  background-color: rgba(255, 255, 255, 0.65);
  background-blend-mode: overlay;
  font-size: 23px;
  line-height: 43px;
  letter-spacing: 0.46px;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .reason {
    background-size: auto;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding-bottom: 50px;
  }
}
.reason h2 {
  margin-top: 0;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .reason h2 {
    margin-bottom: 26px;
  }
}
@media (max-width: 768px) {
  .reason figure {
    margin: 0 auto;
  }
}
.reason_box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 110px;
}
@media (max-width: 768px) {
  .reason_box {
    gap: 20px;
    margin-bottom: 34px;
  }
}
.reason_box h3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: url(../images/reason/reason_ttl_bg.png) repeat-x;
  background-size: contain;
  width: 100%;
  padding: 18px 0;
  margin-top: 0;
  gap: 26px;
}
@media (max-width: 768px) {
  .reason_box h3 {
    background-size: cover;
    gap: 12px;
    padding: 12px;
  }
}
.reason_box h3 span {
  font-size: 36px;
  border-bottom: 3px dashed #ea5c35;
  padding-bottom: 6px;
}
@media (max-width: 768px) {
  .reason_box h3 span {
    font-size: 24px;
    line-height: 34px;
    border-bottom: 2px dashed #ea5c35;
    padding-bottom: 0px;
  }
}
.reason_box h3 img {
  width: initial;
  max-width: 100%;
}
@media (max-width: 768px) {
  .reason_box h3 img {
    width: 68px;
  }
}
.reason_box_main, .reason_box_main2, .reason_box_ex, .reason_box_column, .reason_box_voice {
  width: 1170px;
}
@media (max-width: 768px) {
  .reason_box_main, .reason_box_main2, .reason_box_ex, .reason_box_column, .reason_box_voice {
    width: 94vw;
  }
}
.reason_box_main, .reason_box_main2 {
  display: flex;
  gap: 85px;
}
@media (max-width: 768px) {
  .reason_box_main, .reason_box_main2 {
    gap: 25px;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 569px) {
  .reason_box_main.-right, .reason_box_main2.-right {
    flex-direction: row-reverse;
  }
}
.reason_box_main img, .reason_box_main2 img {
  width: 347px;
}
.reason_box_main figcaption, .reason_box_main2 figcaption {
  flex: 2;
  font-size: 1em !important;
  margin: initial;
  opacity: initial;
  padding: initial;
}
.reason_box_main .-iconbox, .reason_box_main2 .-iconbox {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
}
.reason_box_main .-iconbox .-icon5, .reason_box_main2 .-iconbox .-icon5 {
  max-width: 230px;
}
@media (max-width: 768px) {
  .reason_box_main .-icon, .reason_box_main2 .-icon {
    max-width: 172px;
  }
  .reason_box_main .-icon4, .reason_box_main2 .-icon4 {
    max-width: initial;
  }
  .reason_box_main .-icon5, .reason_box_main2 .-icon5 {
    max-width: 166px !important;
  }
}
.reason_box_main2 {
  gap: 0;
}
@media (min-width: 569px) {
  .reason_box_main2 img.-over {
    width: initial;
    flex: auto;
    margin-left: -60px;
  }
}
.reason_box_main2 figcaption {
  flex: 680px;
  z-index: 10;
}
.reason_box_main2 .-ex {
  flex: 1;
}
@media (min-width: 569px) {
  .reason_box_main2 img.-ex {
    margin-top: -178px;
  }
}
@media (max-width: 768px) {
  .reason_box_main2 figcaption {
    flex: initial;
  }
  .reason_box_column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .reason_box_column h4 {
    margin-top: initial;
  }
  .reason_box_column p {
    padding: 16px 30px;
    margin-top: 0px;
  }
  .reason_box_column_ttl {
    z-index: 10;
  }
  .reason_box_column_img {
    max-width: 320px;
    z-index: 1;
  }
  .reason_box_column .-over {
    height: 200px;
    margin-top: -50px;
  }
  .reason_box_column_txt {
    z-index: 10;
  }
  .reason_box_column .-color {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 12px 0;
    margin-top: -10px;
  }
  .reason_box_column .-color_img {
    width: 100%;
  }
  .reason_box_column .-color img {
    max-width: 150px;
  }
  .reason_box_column .-color img:first-child {
    margin-bottom: 0;
  }
  .reason_box_column.-column5 {
    margin-top: 18px;
  }
  .reason_box_column.-column5 .-over {
    height: initial;
    margin-bottom: -66px;
  }
  .reason_box_ex-img {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reason_box_ex-txt {
    text-align: left;
  }
  .reason_box_color {
    display: none;
  }
  .reason_box_voice {
    margin-top: 30px;
  }
}
.reason_box_column {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 768px) {
  .reason_box_column {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 569px) {
  .reason_box_column.-right {
    flex-direction: row-reverse;
  }
}
.reason_box_column_img {
  width: 320px;
}
@media (min-width: 569px) {
  .reason_box_column_img .-over {
    max-width: initial;
    width: 580px;
    margin-top: -10px;
    margin-left: -170px;
  }
}
.reason_box_column_txt {
  flex: 2;
  z-index: 10;
}
.reason_box_column h4 {
  z-index: 20;
  margin-top: -30px;
}
.reason_box_column h4 img {
  max-width: fit-content;
}
.reason_box_column p {
  background-color: rgba(252, 252, 252, 0.75);
  padding: 25px 35px;
  border-radius: 20px;
  margin-top: -32px;
  box-shadow: 5px 6px 24px 0px rgba(102, 138, 165, 0.3607843137);
}
.reason_box_column_img.-color img:first-child {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .reason_box_column_img.-color img:first-child {
    margin-bottom: 0;
  }
}
.reason_box_column.-column5 {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .reason_box_column.-column5 {
    margin-top: 0;
  }
}
@media (min-width: 569px) {
  .reason_box_column.-column5 .reason_box_column_txt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .reason_box_column.-column5 .reason_box_column_txt p {
    width: 828px;
  }
  .reason_box_column.-column5 .reason_box_column_img .-over {
    margin-top: -76px;
    margin-left: -110px;
  }
}
.reason_box_ex-img {
  display: grid;
  grid-template-areas: "left right" "bottom bottom";
  grid-template-columns: 1fr 1fr;
}
.reason_box_ex-img img {
  width: initial;
  max-width: 100%;
}
.reason_box_ex-img img:nth-child(3) {
  grid-column: 1/3;
  grid-area: bottom;
  margin: 0 auto;
}
.reason_box_ex-txt {
  text-align: center;
}
@media (max-width: 768px) {
  .reason_box_ex-txt {
    text-align: left;
  }
}
.reason_box_color {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  row-gap: 30px;
  margin-top: -50px;
}
.reason_box_color img {
  width: fit-content;
}
.reason_box_voice {
  margin-top: 50px;
}
.reason_box_voice img {
  width: fit-content;
}
@media (max-width: 769px) {
  .reason #reason4 .reason_box_column p {
    margin-top: initial !important;
  }
}
@media (min-width: 769px) {
  .reason #reason6 .reason_box_main,
  .reason #reason6 .reason_box_main2 {
    align-items: center;
  }
}

.instagram__wrap {
  width: 1000px;
  margin-inline: auto;
  padding-block: 4.5rem 1rem;
}
@media (max-width: 768px) {
  .instagram__wrap {
    width: 90%;
    padding-block: 2.5rem 1rem;
  }
}
.instagram__wrap h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .instagram__wrap h2 {
    font-size: 2rem;
    letter-spacing: 0px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 769px) {
  .instagram__wrap .FeedGridLayout__cell:nth-child(n+9) {
    display: none;
  }
}
.instagram__btn {
  color: #013760;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.detail > h2 {
  margin-top: 0;
  background: url(../images/detail_ttl_bg.png);
  background-size: contain;
  padding: 50px 0 80px;
}
.detail > h2 img {
  margin: 0 auto;
  width: fit-content;
}
.detail_body {
  width: 950px;
  margin: 0 auto;
  padding: 64px 0 260px;
}
.detail_body_txt {
  text-align: center;
  padding: 10px 0;
}
.detail_body_info-ttl {
  display: table;
  font-size: 43px;
  line-height: 41px;
  letter-spacing: 9.46px;
  margin: 60px auto 34px;
}
.detail_body_info-ttl::before {
  content: "・";
}
.detail_body_info-ttl::after {
  content: "・";
}
.detail_body_info-txt {
  background-color: #fffefb;
  border-radius: 210px;
  padding: 4px 125px;
}
.detail_body_info-txt dl {
  display: grid;
  grid-template-areas: "label cont";
  align-items: center;
  grid-template-columns: 1fr 5fr;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.6px;
  padding: 38px 0;
  border-bottom: 4px dashed #013760;
}
.detail_body_info-txt dl:last-child {
  border-bottom: none;
}
.detail_body_info-txt dl dt {
  grid-area: label;
  margin-left: 13px;
}
@media (min-width: 769px) {
  .detail_body_info-txt dl dt.-size {
    font-size: 28px;
  }
}
.detail_body_info-txt dl dd {
  grid-area: cont;
}
.detail_body_info-txt.-pink > dl > dt {
  color: #de888c;
}
.detail_body_info-txt.-yellow > dl > dt {
  color: #d6a46f;
}
.detail_body_info-txt.-color {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 125px 30px;
  border-radius: 160px;
}
.detail_body_info-txt.-color figure {
  margin: 0 auto;
}
.detail_body_info-txt.-color figure figcaption {
  margin-top: 25px;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.4px;
}
.detail_body_info-txt.-price > dl {
  grid-template-columns: 7em auto;
  border-bottom: none;
  padding-bottom: 42px;
}
.detail_body_info-txt.-price > dl dt {
  color: #7dabbc;
}
.detail_body_info-txt.-price > dl dd .souryo {
  margin-left: 30px;
  border: 1px solid #013760;
  border-radius: 8px;
  padding: 2px 12px;
  font-size: 18px;
  letter-spacing: 2.5px;
}
.detail_body_info-note {
  font-size: 21px;
  line-height: 34px;
  letter-spacing: 0.42px;
}
.detail_body_info-note.-color {
  grid-area: bottom;
}
.detail_body_color {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.howto {
  margin-top: -200px;
}
@media (min-width: 569px) {
  .howto {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .howto {
    margin-top: -56px;
  }
}
.howto h2 {
  margin: 0 auto;
}
.howto picture img {
  margin: 0 auto;
}
.howto_bgwrap {
  background-color: #F6F1EB;
}
.howto_inner {
  margin: 0 auto;
  padding: 32px 0 70px;
  width: 1170px;
}
@media (max-width: 768px) {
  .howto_inner {
    width: 94vw;
    padding-block: 40px 52px;
  }
}
.howto_intr {
  text-align: center;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 0.6px;
}
@media (max-width: 768px) {
  .howto_intr {
    font-size: 15px;
    line-height: 25px;
  }
}
.howto_note {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .howto_note {
    margin-top: 34px;
    margin-bottom: 60px;
  }
}
.howto_note img {
  width: fit-content;
}
@media (max-width: 768px) {
  .howto_column {
    margin-bottom: 54px;
  }
}
.howto_column h3 {
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .howto_column h3 {
    margin: 0 auto 16px;
  }
}
.howto_column figure {
  display: flex;
  flex-direction: row-reverse;
  gap: 27px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 569px) {
  .howto_column figure {
    margin: 0 -60px 90px 60px;
  }
  .howto_column figure img {
    width: 565px;
  }
}
@media (max-width: 768px) {
  .howto_column figure {
    gap: 14px;
    flex-direction: column;
  }
}
@media (min-width: 569px) {
  .howto_column picture.-over {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .howto_column picture.-over > img {
    max-width: initial;
    width: 80vw;
    margin-left: 0;
  }
}
@media (min-width: 569px) and (max-width: 768px) {
  .howto_column picture.-over > img {
    width: 98vw;
  }
}
.howto_end {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .howto_end {
    margin-top: 40px;
    text-align: left;
  }
}

.try > h2 {
  position: relative;
  background-color: #ea5c35;
  margin: 0 auto;
}
.try > h2 > img {
  margin: 0 auto;
  padding: 25px 0;
}
.try > h2::after {
  position: absolute;
  content: "";
  background: url(../images/arrow1.svg) no-repeat;
  background-size: contain;
  width: 68px;
  height: 30px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.try figure {
  width: 1170px;
  margin: 0 auto;
  padding: 37px 0 77px;
}
@media (max-width: 768px) {
  .try figure {
    width: 94vw;
  }
}
.try figure figcaption {
  padding-top: 70px;
  text-align: center;
}
@media (min-width: 569px) {
  .try figure figcaption {
    width: 893px;
    margin: 0 auto;
  }
}

.hope {
  padding: 96px 0 0;
}
@media (max-width: 768px) {
  .hope {
    padding: 1rem 0 2rem;
    background-size: auto;
  }
}
.hope_box {
  width: 978px;
  margin: 0 auto;
  background-color: white;
}
@media (max-width: 768px) {
  .hope_box {
    width: 94vw;
  }
}
.hope_box_txt {
  padding: 20px 42px;
}
@media (max-width: 768px) {
  .hope_box_txt {
    font-size: 1em;
    line-height: 1.8;
    letter-spacing: 0.3px;
    padding: 12px 18px 30px;
  }
}
.hope_box_pic {
  max-width: initial;
  width: 1170px;
  margin-left: -6%;
}
@media (max-width: 768px) {
  .hope_box_pic {
    width: 110%;
  }
}

.contact {
  position: relative;
  width: 978px;
  margin: 90px auto 10px;
  background-color: #f6f2eb;
}
@media (max-width: 768px) {
  .contact {
    width: 94vw;
    margin: 40px auto 0;
    background-color: initial;
  }
}
.contact h4 {
  display: table;
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact h4 {
    position: relative;
    z-index: 100;
  }
  .contact h4 img {
    width: 280px;
  }
}
.contact_wrap {
  padding: 12px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .contact_wrap {
    background-color: #f6f2eb;
    margin-top: -46px;
  }
}
.contact_body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-around;
  width: 954px;
  padding: 78px 48px 44px;
  border: 1px dashed #ea5c35;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 38px 14px 20px;
  }
}
.contact_tel {
  color: #013760;
  font-weight: 700;
}
@media (min-width: 769px) {
  .contact_tel {
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .contact_tel {
    text-align: center;
  }
}
.contact_tel-label {
  position: relative;
  display: block;
  font-size: 45px;
  font-weight: 800;
  text-decoration: none;
  color: #013760;
  padding: 8px 0px 18px 58px;
}
@media (max-width: 768px) {
  .contact_tel-label {
    font-size: 28px;
    padding: 8px 0px 14px 1.3em;
  }
}
.contact_tel-label:before {
  content: url(../images/tel.svg);
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  left: 0;
}
@media (max-width: 768px) {
  .contact_tel-label:before {
    top: 8px;
    width: 1em;
    height: 1em;
  }
}
.contact_tel-top {
  font-size: 28px;
  letter-spacing: 0.58px;
}
@media (max-width: 768px) {
  .contact_tel-top {
    font-size: 14px;
  }
}
.contact_tel-sub {
  font-size: 24px;
  line-height: 1.25em;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact_tel-sub {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
}
.contact_tel-sub a {
  text-decoration: none;
}
.contact_border {
  width: 1px;
  height: 100%;
  background-color: #ea5c35;
}
@media (max-width: 768px) {
  .contact_border {
    width: 100%;
    height: 1px;
  }
}

footer {
  background: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
}
@media (max-width: 768px) {
  footer {
    padding: 1rem 1rem 8rem;
  }
}
footer .kiyaku {
  color: #013760;
  line-height: 1em;
  text-decoration: none;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  footer .kiyaku {
    margin-bottom: 28px;
  }
}
footer .company {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  footer .company {
    margin-bottom: 33px;
  }
}
footer .company h3 {
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  footer .company h3 {
    margin-bottom: 30px;
  }
}
footer .company dl > div {
  display: flex;
  line-height: 1.2em;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  footer .company dl > div {
    margin-bottom: 10px;
    font-size: 13px;
  }
  footer .company dl > div dd {
    margin-left: 2em;
    letter-spacing: 2px;
  }
}
footer .company dl > div > dt {
  width: 5em;
}

.fixed-order-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: fit-content;
  height: auto;
  /* flexbox設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .fixed-order-button {
    bottom: 8px;
    right: 8px;
    width: 64px;
    gap: 6px;
  }
}
.fixed-order-button a {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.12));
}
.fixed-order-button img {
  width: 100%;
  /* 親に合わせてリサイズ */
  height: auto;
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}