@charset "UTF-8";
/* ===========================
  Service
=========================== */

.Service__Fv {
  display: block;
    padding-top: 120px;
    width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.20);
    background-image: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
}

.Service__titleGroup {
  margin-top: 64px;
}

.Service__contents {
  margin: 32px 16px 0;
}

.Service__item {
  margin-top: 56px;
}

.Service__item:first-of-type {
  margin-top: 0;
}

.Service__title {
  margin-top: 24px;
  color: var(--Primary__DeepBlue);
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-color: #FB0;
  text-decoration-thickness: 20%; /* 2.88px */
  text-underline-offset: 25%; /* 4px */
  text-underline-position: from-font;
}
.Service__txt {
  margin-top: 32px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 400;
}

/* Service__Pc */
@media screen and (min-width: 769px) {

  .article {
    margin: 0 auto;
  }

  .Service__Fv {
    display: block;
    padding-top: 160px;
    width: 100%;
    height: 100%;
    max-height: 580px;
    object-fit: cover;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 6px 4px 0 rgba(32, 33, 36, 0.20);
  }

  .Service__titleGroup {
    margin-top: 100px;
  }

  .Service__contents {
    margin: 64px auto 0;
    max-width: 1600px;
    padding: 0 32px;    
  }

  .Service__item {
    margin: 120px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 56px;
    max-width: 80.5%;
  }

  .Service__item:first-of-type {
    margin: 0 auto;
    max-width: 80.5%;
  }

  .Service__item:nth-of-type(2) {
    flex-direction: row-reverse;
  }

  .Service__img {
    width: 50%;           /* 親要素に合わせて縮む */
    max-width: 570px;      
    height: auto;          /* 縦横比を維持 */
    flex-shrink: 1;        /* 狭いときに縮んでOK */
  }

  .Service__title {
    margin-top: 0;
    font-size: 2.4rem;
  }
  .Service__txt {
    margin-top: 48px;
    font-size: 1.6rem;
  }
}

/* ===========================
  Flow
=========================== */

.Flow {
  margin-top: 80px;
  padding: 32px 0 56px;
  background-color: var(--Primary__LightOrange);
  border-top: 30px solid var(--Primary__Orange);
  box-shadow: 0 6px 4px 0 rgba(32, 33, 36, 0.15);
}

.Flow__title {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1; /* 24px */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--Primary__Mint);
  text-decoration-thickness: 20%; /* 4.8px */
  text-underline-offset: 25%; /* 6px */
  text-underline-position: from-font;
}

.Flow__group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 16px 0;
}

.Flow__contents {
  padding-left: 0;
}

.Flow__contents > .Flow__list {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.Flow__contents > .Flow__list:not(:last-child) {
  padding-bottom: 24px;
}

.Flow__contents > .Flow__list .Flow__itemIcon {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background-color: var(--Primary__Orange) ;
  color: var(--Primary__White);
  position: absolute;
  left: 0;
  top: -3px;
}

.Flow__contents > .Flow__list:not(:last-child)::before {
  content: '';
  background: var(--Primary__DeepBlue);
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -8px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.Flow__contents > .Flow__list .Flow__item .Flow__itemTopic {
  font-size: 2rem;
  font-weight: 700;
  color: var(--Primary__DeepBlue);
  font-family: "Zen Maru Gothic";
}

.Flow__contents > .Flow__list .Flow__item .Flow__itemTxt {
  margin-left: 0;
  margin-top: 8px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
}

.Flow__subTxtBox {
  margin: 32px 16px 0;
  padding: 24px;
  background-color: var(--Primary__White);
  border: 3px solid var(--Primary__SkyBlue);
}

.Flow__subTxt {
  margin-top: 16px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 400;
}

.Flow__subTxt:first-of-type {
  margin-top: 0;
}

.Flow__subTxt span {
  color: var(--Primary__Pink);
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
}

/* Flow__Pc */
@media screen and (min-width: 769px) {
  .Flow {
    margin-top: 100px;
    border-top: 64px solid var(--Primary__Orange);
    box-shadow: 0 6px 4px 0 rgba(32, 33, 36, 0.15);
  }

  .Flow__title {
    font-size: 4.8rem;
  }

  .Flow__group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 64px 48px 0;
  }

  .Flow__contents {
    padding-left: 0;
  }

  .Flow__contents > .Flow__list {
    list-style-type: none;
    position: relative;
    padding-left: 50px;
  }

  .Flow__contents > .Flow__list:not(:last-child) {
    padding-bottom: 48px;
  }

  .Flow__contents > .Flow__list .Flow__itemIcon {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border-radius: 100vh;
    display: inline-block;
    background-color: var(--Primary__Orange) ;
    color: var(--Primary__White);
    position: absolute;
    left: 0;
    top: -4px;
  }

  .Flow__contents > .Flow__list:not(:last-child)::before {
    content: '';
    background: var(--Primary__DeepBlue);
    width: 8px;
    height: 100%;
    position: absolute;
    top: calc(50% - -8px);
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .Flow__contents > .Flow__list .Flow__item .Flow__itemTopic {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--Primary__DeepBlue);
    font-family: "Zen Maru Gothic";
    margin-left: 12px;
  }

  .Flow__contents > .Flow__list .Flow__item .Flow__itemTxt {
    margin-left: 12px;
    margin-top: 16px;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
  }

  .Flow__subTxtBox {
    margin: 64px auto 0;
    padding: 32px;
    max-width: 1160px;
  }

  .Flow__subTxt {
    margin-top: 24px;
    font-size: 1.6rem;
  }

  .Flow__subTxt span {
    font-size: 1.6rem;
  }  
}

/* ===========================
Contact
=========================== */

.Contact {
  margin: 80px auto 0;
}

.Contact__title {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1; /* 24px */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--Primary__Orange);
  text-decoration-thickness: 20%; /* 4.8px */
  text-underline-offset: 25%; /* 6px */
  text-underline-position: from-font;
  text-transform: uppercase;
}

.Contact__desc {
  margin-top: 32px;
  color: var(--Primary__DeepBlue);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1; /* 14px */
}

.ContactBox {
  margin-top: 32px;
  padding: 32px 16px;
  border-radius: 10px;
  border: 3px solid var(--Primary__MidBlue);
  background: var(--Primary__White);
  text-align: left;
}

.Contact__group {
  padding: 16px 0;
  border-bottom: 1px solid var(--Primary__LightBlue);
}

.Contact__group:first-of-type {
  padding: 0 0 16px 0;
}

/* ラベル */
.Contact__label {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
}

/* 必須マーク */
.required {
  background-color: var(--Primary__Pink);
  font-family: "Zen Maru Gothic";
  color: var(--Primary__White);
  font-size: 1.2rem;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 5px;
}

/* グループ全体 */
.Contact__selectBtns {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ラジオボタンは非表示 */
.Contact__selectBtns input[type="radio"] {
  display: none;
}

/* ボタンの見た目 */
.Contact__btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--Primary__Black);
  background-color: var(--Primary__White);
  border: 1px solid var(--Primary__Gray);
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* ホバー時 */
.Contact__btn:hover {
  background-color: var(--Primary__Gray);
}

/* チェックされたボタン（アクティブ状態） */
.Contact__selectBtns input[type="radio"]:checked + .Contact__btn {
  background-color: var(--Primary__SkyBlue);
  color: var(--Primary__DeepBlue);
  border-color: var(--Primary__DeepBlue);
  font-weight: 700;
}

/* 入力欄 */
.Contact__group input,
.Contact__group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--Primary__DeepGray);
  border-radius: 4px;
  font-size: 1.4rem;
  box-sizing: border-box;
}

/* ラジオボタン */
.Contact__radioGroup label {
  margin-right: 16px;
}

.Btn__contactSend {
  margin: 32px auto 0;
  display: flex;
  max-width: 193px;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 25px;

  border-left: 12px solid var(--Primary__Mint);
  background: var(--Primary__White);
  box-shadow: 6px 1px 4px 0 rgba(32, 33, 36, 0.15);
}

.Btnsub {
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--Primary__Mint);
  width: 140px;
}

.Btnsub__arrow {
  transform: rotate(180deg);
}

.Btnsub__Txt {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1; /* 14px */
}

.Btnsub__Txt:hover {
  color: var(--Primary__Mint);
}

/* Contact__Pc */
@media screen and (min-width: 769px) {
  .Contact {
    margin: 120px auto 0;
    padding: 0 32px;
  }

  .Contact__title {
    font-size: 4.8rem;
  }

  .Contact__desc {
    margin-top: 64px;
    font-size: 2.4rem;
  }

  .ContactBox {
    margin: 64px auto 0;
    padding: 64px 48px;
    border-radius: 20px;
    max-width: 1160px;
    border: 5px solid var(--Primary__MidBlue);
  }

  .Contact__group {
    padding: 16px 0;
  }

  .Contact__group:first-of-type {
    padding: 0 0 16px 0;
  }

  /* ラベル */
  .Contact__label {
    font-size: 2rem;
  }

  /* 必須マーク */
  .required {
    font-size: 1.4rem;
    padding: 2px 4px;
  }

  /* グループ全体 */
  .Contact__selectBtns {
    display: flex;
    gap: 16px;
    margin-top: 16px;
  }

  /* ボタンの見た目 */
  .Contact__btn {
    font-size: 1.6rem;
  }

  /* 入力欄 */
  .Contact__group input,
  .Contact__group textarea {
    width: 100%;
    padding: 16px;
    font-size: 1.6rem;
    margin-top: 16px;
  }

  .Btn__contactSend {
      margin: 64px auto 0;
      max-width: 230px;
      padding: 20px 25px;
      border-left: 17px solid var(--Primary__Mint);
  }

  .Btnsub {
    margin: 64px auto 0;
    width: 172px;
  }

  .Btnsub__Txt {
    font-size: 2.4rem;
  }
}