@charset "UTF-8";
:root {
  --mainC_1: #fcee21;
  --mainC_2: #009fe8;
  --fontC_1: #4d4d4d;
  --bgC_1: #f7f7f7;
  --bgC_2: #ffffff;
  --hdrH: calc(50px + 2em);
  --gap_48: 48px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 0;
  scroll-behavior: smooth;
}
body {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: var(--fontC_1);
  background: url(./img/bg.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
a,
button {
  border: none;
  background: none;
  transition: 0.4s ease-in-out all;
  color: var(--mainC_2);
  text-decoration: none;
  cursor: pointer;
}
a:hover,
button:hover,
.acc_head:hover {
  opacity: 0.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-size: 1em;
}
input[type="text"],
input[type="email"],
textarea {
  padding: 0.25em 0.5em;
  border: none;
  width: 100%;
  max-width: 100%;
  font-size: 1em;
  line-height: 1.6;
  resize: none;
}
fieldset {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 0;
  border: none;
}
input[type="radio"] {
  margin: 0 0.5em 0 0;
  width: 1.5em;
  height: 1.3em;
  accent-color: var(--fontC_1);
}
button:disabled {
  color: var(--bgC_2);
  background-color: var(--fontC_1);
  opacity: 0.7;
  cursor: inherit;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 16px;
  }
}

/* ****************************** */
/* 全般
****************************** */
.body_container {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}
.content_container {
  margin: 0 auto;
  width: 100%;
  max-width: 450px;
  background-color: var(--bgC_1);
  box-shadow: 8px 0px 16px -4px #a1a1a1;
}
.sec_inr {
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 48px;
}
.sp_br {
  display: inline-block;
}
.marker {
  position: relative;
}
.marker::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0.6em;
  background-color: #fcee21;
  mix-blend-mode: multiply;
}
.marker_w {
  background: linear-gradient(transparent 40%, var(--bgC_2) 40%);
}
.strong {
  font-size: 1.4em;
  font-weight: bold;
}
.small {
  font-size: 0.8em;
  font-weight: 400;
}
.btn_1 {
  padding: 1em 2em;
  display: inline-block;
  border-radius: 0.5em;
  width: 100%;
  max-width: 300px;
  color: var(--mainC_2);
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  background-color: var(--mainC_1);
}
.btn_2 {
  padding: 1em 2em;
  display: inline-block;
  border-radius: 0.5em;
  width: 100%;
  max-width: 300px;
  color: var(--mainC_2);
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  background-color: var(--bgC_2);
}
.textA_r {
  text-align: right;
}
@media screen and (max-width: 1300px) {
  .content_container {
    margin: 0 64px 0 auto;
  }
}
@media screen and (max-width: 928px), (max-height: 895px) {
  .content_container {
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .sec_inr {
    padding: 48px 24px;
    row-gap: 32px;
  }
  .sp_hidden {
    display: none;
  }
}

/* ****************************** */
/* header
****************************** */
#hdr {
  position: fixed;
  top: 0;
  left: calc(50% - 650px);
  width: 100%;
  max-width: 348px;
  height: 100%;
  border-left: 4px double var(--mainC_2);
  z-index: 9;
}
.hdr_inr {
  padding: 32px 0 32px 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
}
.hdr_logo {
  width: 160px;
}
.hdr_link {
  display: inline-block;
  width: 300px;
  height: 100px;
  background: url(./img/logo_sakutto_1.png) center center no-repeat;
  background-size: contain;
}
#hdr_menu_btn {
  display: none;
}
.hdr_menu_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
  font-size: 20px;
  font-weight: bold;
  list-style: none;
}
.hdr_menu_list a {
  color: var(--fontC_1);
}
.hdr_btn_list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(32px, 80px));
  column-gap: 1em;
  list-style: none;
}
@media screen and (max-width: 1300px) {
  #hdr {
    left: 64px;
  }
}
@media screen and (max-width: 928px), (max-height: 895px) {
  #hdr {
    left: 0;
    max-width: 100%;
    height: auto;
    border-left: none;
  }
  .hdr_inr {
    padding: 1em;
    display: flex;
    justify-content: space-between;
  }
  .hdr_logo {
    display: none;
  }
  .hdr_link {
    width: 50px;
    height: 50px;
    background: url(./img/logo_sn_2.png) center center no-repeat;
    background-size: contain;
    z-index: 999;
  }
  #hdr_menu_btn {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.4s ease-in-out all;
    z-index: 999;
  }
  .hdr_scroll #hdr_menu_btn {
    background-color: var(--bgC_1);
  }
  #hdr_menu_btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--mainC_2);
    transition: 0.2s ease-in-out all;
  }
  #hdr_menu_btn span:nth-of-type(1) {
    top: 30%;
  }
  #hdr_menu_btn span:nth-of-type(3) {
    top: 70%;
  }
  .menu_on #hdr_menu_btn span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .menu_on #hdr_menu_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_on #hdr_menu_btn span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  #hdr_menu {
    display: none;
  }
  .menu_on #hdr_menu {
    padding: calc(var(--hdrH) + calc(48px - 1em)) 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
    height: 100%;
    overflow-y: auto;
    background-color: var(--bgC_1);
    animation: menu_on 0.2s ease-in-out;
  }
  .hdr_menu_list {
    font-size: 1em;
  }
  .hdr_btn_list {
    grid-template-columns: repeat(3, minmax(32px, 50px));
  }
}
@keyframes menu_on {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  0% {
    opacity: 100;
    transform: translateX(0);
  }
}

/* ****************************** */
/* main
****************************** */
#mv {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
}
#service {
  background-color: var(--bgC_2);
}
#service p,
#compare p,
#option p {
  font-weight: 500;
  text-align: center;
}
#service h3 {
  font-size: 1.2em;
}
.service_point_container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  color: var(--mainC_2);
  text-align: center;
}
.service_point_container h3 {
  font-weight: bold;
}
.service_point_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  list-style: none;
}
.service_point_list figcaption {
  margin-top: 0.5em;
}
.service_point_list figcaption a {
  text-decoration: underline;
}
#compare h2 {
  max-width: 10em;
  font-size: 1.2em;
  color: var(--mainC_2);
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
}
.compare_msg {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
  text-align: center;
}
.plan_intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1em;
}
.plan_intro img {
  width: 100px;
}
.sec_title {
  color: var(--mainC_2);
  letter-spacing: 0.05em;
  text-align: center;
}
.plan_point_list {
  color: var(--mainC_2);
  font-size: 1.2em;
  list-style: none;
}
.plan_point_list li::before {
  content: "〉";
}
.acc_container {
  width: 100%;
}
.acc_head {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  font-size: 1.2em;
  color: var(--mainC_2);
  transition: 0.2s ease-in-out all;
  cursor: pointer;
}
.acc_head img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  transition: 0.2s ease-in-out all;
}
.acc_hidden {
  display: none;
}
.acc_on .acc_head img {
  transform: scale(1, -1);
}
.acc_on .acc_disp {
  display: none;
}
.acc_on .acc_hidden {
  display: inline;
}
.acc_body {
  display: none;
  animation: acc_on 0.2s ease-in-out;
}
.acc_on .acc_body {
  display: block;
}
.acc_body dt {
  margin: 2em 0 0.5em 0;
  background-color: var(--bgC_2);
  color: var(--mainC_2);
}
.acc_body dl ul {
  padding-left: 40px;
}
.acc_body .small {
  color: var(--mainC_2);
}
.caution_list {
  margin-top: 1em;
  display: grid;
  grid-template-columns: 3em auto;
  font-size: 0.8em;
}
.caution_list dt {
  margin: 0;
  background: none;
  color: var(--fontC_1);
}
#option p {
  color: var(--mainC_2);
}
#option .caution_list {
  grid-template-columns: 1.5em auto;
}
#flow {
  background-color: var(--mainC_2);
}
#flow .sec_title {
  color: var(--bgC_2);
}
.flow_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  list-style: none;
}
.flow_list figcaption {
  margin-top: 0.5em;
  display: grid;
  grid-template-columns: 2em auto;
  color: var(--bgC_2);
}
#michimichi {
  background-color: var(--bgC_2);
}
.michimichi_intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1em;
}
.michimichi_intro h2 {
  margin-top: 0.5em;
  max-width: 14em;
  color: var(--mainC_2);
  text-align: center;
}
.michimichi_intro img {
  width: 200px;
}
.michimichi_intro p {
  text-align: center;
}
#contact p {
  text-align: center;
}
.input_required::after {
  content: "※";
}
#contact_form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
}
#contact_form label[for="subject_1"],
#contact_form label[for="subject_2"],
#contact_form label[for="type_1"],
#contact_form label[for="type_2"] {
  display: flex;
  align-items: center;
}
#contact_msg {
  padding: 1em;
  border: 2px solid var(--mainC_1);
}
.submit_btn_container {
  text-align: center;
}
#about {
  background-color: var(--mainC_2);
}
.about_inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
.about_inr img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.about_bus_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 0.5em;
  font-weight: 300;
  color: var(--bgC_2);
  font-weight: 300;
  list-style: none;
}
.about_bus_list li::after {
  margin-left: 0.5em;
  content: "/";
}
.about_bus_list li:nth-last-of-type(1):after {
  margin-left: 0;
  content: "";
}
.about_inr p {
  color: var(--bgC_2);
}
.about_inr p .strong {
  font-size: 1em;
  font-weight: 400;
  color: var(--mainC_1);
}
@media screen and (max-width: 450px) {
  .michimichi_intro img,
  .about_inr img {
    width: 160px;
  }
}
@keyframes acc_on {
  0% {
    opacity: 0;
    /* transform: translateY(-50%); */
  }
  100% {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

/* ****************************** */
/* footer
****************************** */
#ftr {
  background-color: var(--mainC_1);
}
#ftr p {
  text-align: center;
  font-weight: 500;
}
#ftr img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
@media screen and (max-width: 450px) {
  #ftr img {
    width: 160px;
    height: 160px;
  }
}
