@charset "UTF-8";
:root {
  --color-header: #0a4e94;
  --color-main: #005aae;
  --color-border: #5e9ed3;
  --color-bg: #faf7ee;
  --color-bg-faq: #f5fafc;
  --color-bg-note: #f2f4f4;
  --color-text: #434343;
  --color-white: #fff;
  --color-border-dotted: #edf6f7;
  --color-border-gray: #c9c9c9;
  --color-link: #434343;
  --color-link-hover: #f09199;
  --color-link-visited: #434343;
}

/*                reset
======================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul, li, ol {
  list-style-type: none;
}
picture {
  display: block;
}

body {
  color: #434343;
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 1.3;
  -webkit-text-size-adjust: none;
  interpolate-size: allow-keywords;
}
dt,
dd,
li,
th,
td,
p {
  line-height: 1.5;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input,
textArea,
select,
button {
  background: none;
  margin: 0;
  outline: none;
  padding: 0;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  font-size: 14;
}

button {
  cursor: pointer;
}

* {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  -webkit-overflow-scrolling: touch;
}

/*                link
======================================================= */
a:link {
  text-decoration: none;
}

@media (any-hover: hover) {
  a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  a:hover {
    opacity: 0.8;
  }
  a:hover img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.8;
  }
}
/*                common
======================================================= */
.dib {
  display: inline-block;
}

/*                leyout
======================================================= */
@media only screen and (max-width: 768px) {
  html, body {
    min-width: 360px;
  }
}

#wrapper {
  position: relative;
}

.header {
  background: var(--color-header) url("../images/bg-main.webp") no-repeat center center / cover;
}
@media only screen and (min-width: 768.001px) {
  .header,
  .main,
  .footer {
    min-width: 1080px;
  }
  .sp-txt {
  display:none;
}
}
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;;
  height: 70px;
  background: var(--color-white);
}
.logo-odakyu {
  display: grid;
  place-content: center;
  height: 100%;
  margin-left: 50px;
}
.logo-odakyu a {
  width: 139px;
}


@media only screen and (max-width: 768px) {
  .header-bar {
    height: 50px;
  }
  .logo-odakyu {
    margin-left: 15px;
  }
  .logo-odakyu a {
    width: 120px;
  }
  .sp-txt {
  display:block;
}
}

.pc-menu {
  display: flex;
  gap: 50px;
  margin-right: 50px;
}
@media only screen and (max-width: 768px) {
  .pc-menu {
    display: none;
  }
}
.pc-menu ul {
  display: flex;
  gap: 50px;
}
.pc-menu ul li {
  position: relative;
}
.pc-menu ul li + li::before {
  content: "";
  position: absolute;
  top: -4.5px;
  left: -25px;
  width: 1px;
  height: 30px;
  background-color: var(--color-main);
}
.pc-menu ul li a {
  font-size: 16px;
  color: var(--color-main);
}
.pc-menu ul li a:link {
  color: var(--color-main);
}
/* ハンバーガーメニュー（二本線） */
@media only screen and (min-width: 768.001px) {
  .mobile-menu__btn,
  .mobile-menu__cover,
  .mobile-menu {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    position: relative;
  }
  .mobile-menu__btn {
    position: absolute;
    top: 3px;
    right: 7px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu__btn:focus {
    outline: none;
  }
  .mobile-menu__btn > span {
    display: block;
    width: 28px;
    height: 2px;
    margin-bottom: 8px;
    background-color: #434343;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  .mobile-menu__btn > span:last-child {
    margin-bottom: 0;
  }
  .mobile-menu__cover {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
    background-color: var(--color-main);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
  }
  .mobile-menu p a:link, .mobile-menu p a:visited, .mobile-menu p a:hover, .mobile-menu p a:active {
    color: inherit;
  }
  .mobile-menu__main {
    margin: 0;
    padding: 0;
  }
  .mobile-menu__item {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu__item:nth-child(1) {
    transition-delay: 0s;
  }
  .mobile-menu__item:nth-child(2) {
    transition-delay: 0.05s;
  }
  .mobile-menu__item:nth-child(3) {
    transition-delay: 0.1s;
  }
  .mobile-menu__item:nth-child(4) {
    transition-delay: 0.15s;
  }
  .mobile-menu__link {
    display: block;
    padding: 16px 0;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-image : linear-gradient(to right, var(--color-border-dotted), var(--color-border-dotted) 1.5px, transparent 1.5px, transparent 8px);  /* 幅1.5pxの線を作る */
    background-size: 8px 1.5px;          /* グラデーションの幅・高さを指定 */
    background-position: left bottom;  /* 背景の開始位置を指定 */
    background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  #wrapper .mobile-menu > a {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 110px;
  }
  #wrapper.menu-open .mobile-menu > a img {
    width: 110px;
  }
  #wrapper .mobile-menu > div {
    padding-top: 100px;
    text-align: center;
  }
  #wrapper .mobile-menu > div picture {
    margin-bottom: 20px;
  }
  #wrapper .mobile-menu > div p {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
  }

  #wrapper.menu-open .mobile-menu__btn {
    pointer-events: auto;
  }
  #wrapper.menu-open .mobile-menu__btn > span {
    background-color: var(--color-white);
  }
  #wrapper.menu-open .mobile-menu__btn > span:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
  }
  #wrapper.menu-open .mobile-menu__btn > span:nth-child(2) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
            transform: translateY(-5px) rotate(-45deg);
  }
  #wrapper.menu-open .mobile-menu__cover {
    opacity: 1;
    visibility: visible;
  }
  #wrapper.menu-open .mobile-menu {
    transform: translateX(0);
    pointer-events: auto;
  }
  #wrapper.menu-open .mobile-menu__item {
    opacity: 1;
  }
}


.kv-box h1 {
  width: 100%;
  padding: 100px 0 110px;
  text-align: center;
}
.detail-box {
  width: 100%;
  padding: 100px 0;
  text-align: center;
  background: var(--color-main);
}
@media only screen and (max-width: 768px) {
  .kv-box h1 {
    padding: 30px;
  }
  .kv-box h1 img {
    width: 500px;
  }
  .detail-box {
    padding: 50px 0;
  }
  .detail-box img {
    width: calc(100% - 60px);
    max-width: 500px;
  }
}

.bg-light {
  padding-block: 100px;
  background-color: var(--color-bg);
}
.bg-dark {
  padding-block: 100px;
  background-color: var(--color-main);
}
.section-title {
  position: relative;
  color: var(--color-main);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 135px;
  height: 3px;
  background-color: var(--color-main);
}
.section-title + p {
  color: var(--color-main);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-block: calc((1em - 1lh) / 2) calc((1em - 1lh) / 2 + 30px);
}
.coupon-img {
  margin-inline: auto;
  max-width: 1060px;
}
.step-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
}
.bg-dark .step-list li {
  text-align: center;
}
.bg-dark .step-list li picture {
  margin-bottom: 30px;
}
.bg-dark .step-list li p {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.link-btn {
  display: grid;
  place-content: center;
  margin-inline: auto;
  width: 320px;
  max-width: 100%;
  height: 55px;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-main);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.link-btn:link {
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .bg-light {
    padding-block: 50px;
  }
  .bg-dark {
    padding-block: 50px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-title + p {
    font-size: 16px;
  }
  .bg-dark:has(.step-list) {
    padding-inline: 25px;
  }
  .bg-dark .step-list {
    flex-direction: column;
    gap: 40px;
    padding-inline: 25px;
  }
  .bg-dark .step-list li picture {
    margin-bottom: 20px;
  }
}

.bg-light .step-list {
  width: 1080px;
  max-width: 100%;
  margin-inline: auto;
  padding-left: 40px;
  flex-direction: column;
}
.bg-light .step-list .step-text {
  position: relative;
  margin-bottom: 10px;
  color: var(--color-main);
  font-size: 28px;
  font-weight: bold;
}
.step-text .note .step-underline{
  border-bottom: 2px solid #005aae;
  color: #005aae;
}
@media only screen and (min-width: 768.001px) {
  .bg-light .step-list li:nth-child(2) .step-text {
    display: flex;
  }
}
.bg-light .step-list .step-text span:first-child {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 25px;
  border-radius: 50%;
  background-color: var(--color-main);
  color: var(--color-white);
  text-align: center;
  line-height: 50px;
  font-family: 'Tinos', serif;
}
.bg-light .step-list .step-text span:nth-child(3) {
  display: block;
  margin-left: 2.6em;
}
.bg-light .step-list .step-text span span.note {
  display: block;
  font-size: 22px;
  margin: 0;
}
.bg-light .step-list li picture {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768.001px) {
  .bg-light .step-list li .arrow-box.sp {
    display: none;
  }

  .bg-light .step-list li .arrow-box.map {
    position: relative;
    width: 1000px;
    height: 261.26px;
  }
  .bg-light .step-list li .arrow-box.map img {
    position: absolute;
    top: 0;
    right: -36px;
    width: 1036px;
    max-width: 1036px;
    height: 261.26px;
  }
}
@media screen and (max-width: 768px) {
  .bg-light .step-list li .arrow-box.map {
    display: none;
  }
  .bg-light .step-list li .arrow-box .bg {
    padding-left: 24px;
  }
  .bg-light .step-list li .arrow-box .bg::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(100% - 40px);
    background-color: var(--color-white);
  }
  .bg-light .step-list li .arrow-box .bg > img {
    position: relative;
    z-index: 2;
    width: 342px;
  }
  .bg-light .step-list li .arrow-box .bg img + a {
    position: absolute;
    top: 0;
    right: calc(70vw - 393px);
    bottom: 0;
    width: 27vw;
    margin: auto;
    z-index: 10;
  }
  .bg-light .step-list li .arrow-box .bg img + a img {
    width: 100%;
    max-width: 180px;
  }
}
@media screen and (max-width: 550px) {
  .bg-light .step-list li .arrow-box .bg img + a {
    top: -60px;
    right: calc(100% - 400px);
    bottom: auto;
    width: 125px;
    height: 125px;
  }
}
@media screen and (max-width: 430px) {
  .bg-light .step-list li .arrow-box .bg img + a {
    right: 0;
    bottom: auto;
  }
}
.bg-light .step-list li .step-text:has(+ .arrow-box)::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 15px;
  width: 20px;
  height: 70px;
  background-color: var(--color-main);
  z-index: 0;
  }
.bg-light .step-list li .arrow-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 20px;
  height: calc(100% - 20px);
  background-color: var(--color-main);
  z-index: 10;
}
.bg-light .step-list li .arrow-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10.8px;
  width: 28px;
  height: 24px;
  background: url("../images/arrow1.svg") no-repeat center center / contain;
  z-index: 10;
}
.bg-light .step-list li .arrow-box:has(.arrow-box-inner)::before {
  top: -40px;
  height: calc(100% + 20px);
}
.bg-light .step-list li .arrow-box:has(.arrow-box-inner) {
  padding-bottom: 40px;
}


@media screen and (max-width: 768px) {
  .bg-light .step-list {
    padding-inline: 10px;
  }
  .bg-light .step-list li .arrow-box::before {
    left: 8px;
    width: 9px;
    height: calc(100% - 8px);
  }
  .bg-light .step-list li .arrow-box::after {
    left: 5.5px;
    bottom: -14px;
    width: 15px;
    height: 33px;
  }
  .bg-light .step-list .step-text {
    font-size: 16px;
  }
  .bg-light .step-list li .step-text:has(+ .arrow-box)::before {
    top: 31px;
    left: 8px;
    width: 9px;
    height: 90px;
    }
  .bg-light .step-list li .arrow-box:has(.arrow-box-inner)::before {
    top: -25px;
  }
  .bg-light .step-list .step-text span:first-child {
    width: 25px;
    height: 25px;
    margin-right: 8px;
    line-height: 25px;
  }
  .bg-light .step-list .step-text span:nth-child(2) {
    display: block;
    margin-top: -1.5em;
    margin-left: 2em;
  }
  .bg-light .step-list .step-text span span.note {
    font-size: inherit;
  }
  .bg-light .step-list .step-text span.sp-br {
    display: block;
    margin: 0 0 0 2em;
  }
  .bg-light .step-list .step-text span:nth-child(3) {
    display: block;
    margin-left: 2em;
  }
}


/*                sc-list
======================================================= */
.arrow-box {
  position: relative;
  width: 1000px;
  max-width: 100%;
}
.arrow-box-inner {
  padding: 40px 40px 80px;
  background-color: var(--color-white);
}
.arrow-box-inner > p {
  margin-bottom: 40px;
  color: var(--color-main);
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.sc-list {
  width: 884px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 15px auto;
}
@media only screen and (max-width: 768px) {
  .sc-list {
    margin: 0;
    padding: 0;
    gap: 10px;
  }
}
.sc-list li {
  width: 268px;
  margin-bottom: 18px;
}
@media only screen and (min-width: 768.001px) {
  .sc-list li:nth-child(3) .set_wrap .logo {
    margin-bottom: 16px;
  }
  .sc-list li:nth-child(3) .set_wrap .logo img {
    width: 100%;
    max-width: 28%;
  }
  .sc-list li:nth-child(8) .set_wrap .logo {
    margin-bottom: 15px;
  }
  .sc-list li:nth-child(8) .set_wrap .logo img {
    width: 100%;
    max-width: 60%;
  }
  .sc-list li:nth-child(8) .set_wrap .info dl dd {
    line-height: 1.2;
  }
  .sc-list li:nth-child(9) .set_wrap .logo {
    margin-bottom: 8px;
  }
  .sc-list li:nth-child(10) .set_wrap .logo img {
    width: 100%;
    max-width: 50%;
  }
  .sc-list li:nth-child(1) .set_wrap .logo img {
    width: 100%;
    max-width: 28%;
  }
  .sc-list li:nth-child(2) .set_wrap .logo img {
    width: 100%;
    max-width: 23%;
  }
  .sc-list li:nth-child(4) .set_wrap .logo img {
    width: 100%;
    max-width: 50%;
  }
  .sc-list li:nth-child(5) .set_wrap .logo img {
    width: 100%;
    max-width: 40%;
  }
  .sc-list li:nth-child(6) .set_wrap .logo img {
    width: 100%;
    max-width: 40%;
  }
  .sc-list li:nth-child(7) .set_wrap .logo img {
    width: 100%;
    max-width: 50%;
  }
  .sc-list li:nth-child(9) .set_wrap .logo img {
    width: 100%;
    max-width: 50%;
  }
  .sc-list li:nth-child(11) .set_wrap .logo img {
    width: 100%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .sc-list li {
    width: calc(50% - 5px);
    margin-bottom: 0;
  }
  .sc-list li:nth-child(3) .set_wrap .logo img {
    width: 42%;
  }
  .sc-list li:nth-child(8) .set_wrap .logo img {
    width: 75%;
  }
  .sc-list li:nth-child(10) .set_wrap .logo img {
    width: 60%;
  }
  .sc-list li:nth-child(1) .set_wrap .logo img {
    width: 42%;
  }
  .sc-list li:nth-child(2) .set_wrap .logo img {
    width: 30%;
  }
  .sc-list li:nth-child(4) .set_wrap .logo img {
    width: 70%;
  }
  .sc-list li:nth-child(5) .set_wrap .logo img {
    width: 60%;
  }
  .sc-list li:nth-child(6) .set_wrap .logo img {
    width: 60%;
  }
  .sc-list li:nth-child(7) .set_wrap .logo img {
    width: 65%;
  }
  .sc-list li:nth-child(9) .set_wrap .logo img {
    width: 70%;
  }
  .sc-list li:nth-child(11) .set_wrap .logo img {
    width: 70%;
  }
  .arrow-box-inner {
    padding: 30px 12px 12px 24px;
  }
  .arrow-box-inner > p {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.sc-list li .set_wrap {
  width: 100%;
  padding: 20px 0;
  border: 1px solid var(--color-border-gray);
  background-color: #fff;
}
@media only screen and (min-width: 768.001px) {
  .sc-list li .set_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
  }
}
@media only screen and (max-width: 768px) {
  .sc-list li .set_wrap {
    padding: 20px 25px 15px;
  }
}
@media only screen and (max-width: 450px) {
  .sc-list li .set_wrap {
    padding-inline: 2.8vw;
  }
}
.sc-list li .set_wrap .logo {
  position: relative;
  width: 100%;
  height: 64px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .sc-list li .set_wrap .logo {
    height: auto;
    padding-top: 10vw;
    margin-bottom: 12px;
  }
}
.sc-list li .set_wrap .logo img {
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  max-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .sc-list li .set_wrap .logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.sc-list li .set_wrap .info {
  text-align: center;
}
.sc-list li .set_wrap .info dl dt {
  font-size: 114.3%;
  font-weight: 500;
}
.sc-list li .set_wrap .info dl dd {
  font-size: 128.6%;
  font-weight: 600;
  letter-spacing: -0.08em;
}
.sc-list li .set_wrap .info dl dd span {
  display: block;
  font-weight: 500;
  font-size: 66.6%;
}
.sc-list li .set_wrap .info p {
  font-size: 16px;
}
.sc-list li .set_wrap .info a {
  align-items: center;
  background-color: #09a75a;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  font-weight: 600;
  width: clamp(100px, 150px, 100%);
  position: relative;
  padding: 0.5em 0;
  margin: 1.4em auto 0;
}
.sc-list li .set_wrap .info a::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 5px;
  width: 18px;
  height: 15px;
  background: url("../images/line-icon.svg") no-repeat center center / contain;
}
.sc-list li .set_wrap .info a + a {
  margin-top: 0.5em;
  background-color: #005aae;
}
.sc-list li .set_wrap .info a + a::after {
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
  background: none;
}
@media screen and (max-width: 768px) {
  #special-benefits .coupon-img {
    width: 560px;
    max-width: 100%;
    padding-right: 30px;
    padding-left: 4px;
  }
  .sc-list li .set_wrap {
    display: flex;
    flex-direction: column;
  }
  .sc-list li .set_wrap .info {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .sc-list li .set_wrap .info p {
    margin-bottom: auto;
    font-size: 12px;
  }
  .sc-list li .set_wrap .info a {
    margin-top: 12px;
    font-size: 10px;
  }
  .sc-list li .set_wrap .info a::after {
    width: 12px;
    height: 9px;
    margin-left: 3px;
  }
}

.step-3-list-outer {
  width: 1000px;
  padding-top: 40px;
  background-color: var(--color-white);
}
.step-3-list-outer > p {
  margin-bottom: 30px;
  color: var(--color-main);
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.step-3-list {
  display: flex;
  column-gap: 54px;
  width: 1000px;
  padding: 0 60px 60px;
}
.step-3-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 265px;
}
.step-3-list li img {
  width: 100%;
}
.step-3-list p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.step-3-list p .color {
  display: inline-block;
  color: var(--color-main);
  font-weight: 500;
}
.step-3-list p .db {
  display: block;
  font-weight: 500;
}
.step-3-list p .dib {
  display: inline-block;
  font-weight: 500;
}

.bg-light .inquiry {
  margin-bottom: 100px;
}
.inquiry .section-title {
  margin-bottom: 50px;
}
.inquiry-box {
  width: 1000px;
  margin-inline: auto;
  padding: 50px;
  font-size: 14px;
  text-align: center;
  background-color: var(--color-white);
}
.inquiry-box p {
  font-weight: 500;
}
.inquiry-box a {
  color: inherit;
}
.inquiry-box .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.inquiry-box .box1 {
  margin-bottom: 20px;
}
.inquiry-box a {
  font-size: 16px;
  font-weight: bold;
}

footer {
  padding-block: 100px 160px;
}
footer .note-list {
  width: 1000px;
  margin: 0 auto 130px;
  padding: 50px;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--color-bg-note);
}
footer .note-list li {
  padding: 0 0 5px 1em;
  text-indent: -1em;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
}
footer .footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer .footer-main a {
  display: inline-block;
  margin-bottom: 40px;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
footer .footer-main a img{
  width:150px;
}
footer .footer-main p {
  font-size: 12px;
  line-height: 1;
}
.pagetop {
  position: fixed;
  right: 50px;
  bottom: 100px;
  z-index: 10;
  transition-duration: 0.5s;
  transition-property: opacity;
  opacity: 0;
  visibility: hidden;
}
.pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover {
  opacity: 0.8;
}



@media only screen and (min-width: 768.001px) {
  .sp-only {
    display: none;
  }
  .inquiry-box .box2 p:nth-child(2),
  .inquiry-box .box2 p:nth-child(3) {
    display: inline;
  }
  .inquiry-box .box2 p:nth-child(3) {
    margin-left: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .step-3-list-outer {
    max-width: 100%;
    padding-top: 30px;
  }
  .step-3-list-outer > p {
    margin-bottom: 20px;
    font-size: 16px;
  }
    .step-3-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3vw 4%;
    max-width: 100%;
    padding: 0 20px 30px;
  }
  .step-3-list li {
    width: 48%;
  }
  .step-3-list li:nth-child(3) {
    margin-right: auto;
  }
  .step-3-list p {
    font-size: 14px;
  }
  .inquiry-box {
    max-width: calc(100% - 30px);
    margin-inline: auto;
    padding: 30px 15px;
  }
  .inquiry-box .title {
    font-size: 16px;
  }
  .inquiry-box .box2 p:not(.title) {
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
  }
  footer {
    padding-block: 90px 120px;
  }
  footer .note-list {
    max-width: calc(100% - 30px);
    margin: 0 auto 90px;
    padding: 30px 15px;
  }
  footer .note-list li {
    padding-bottom: 0;
  }
  footer .footer-main p {
    line-height: 1.5;
  }
  .pagetop {
    width: 40px;
    right: 15px;
    bottom: 30px;
  }
}

.main_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media only screen and (max-width: 1160px) {
  .main_width {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.cont_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
}

@media only screen and (max-width: 1024px) {
  .main_width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .main_width {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .main_width {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .pc_view {
    display: none;
  }
}
@media only screen and (min-width: 768.001px) {
  .sp_view {
    display: none;
  }
}
.bg_cont {
  background-color: #fff;
  padding: 25px 28px;
}
@media only screen and (max-width: 1080px) {
  .bg_cont {
    padding: 2.3148148148vw 2.5925925926vw;
  }
}
@media only screen and (max-width: 768px) {
  .bg_cont {
    padding: 5vw 4vw 4vw;
  }
}


#qa {
  background-color: var(--color-main);
  padding: 100px 0;
}
@media only screen and (max-width: 1080px) {
  #qa {
    padding: 5.1851851852vw 0 8.3333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  #qa {
    padding: 8.75vw 0 14.0625vw;
  }
}
@media only screen and (max-width: 400px) {
  #qa {
    padding: 14vw 0 22.5vw;
  }
}
#qa .bg_cont {
  padding: 60px 45px;
}
@media only screen and (max-width: 768px) {
  #qa .bg_cont {
    padding: 5vw 4vw 4vw;
  }
}
@media only screen and (max-width: 768px) {
  #qa .bg_cont {
    padding: 6vw 3vw 4vw;
  }
}
#qa .section-title {
  color: var(--color-white);
  margin-bottom: 50px;
}
#qa .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 135px;
  height: 3px;
  background-color: var(--color-white);
}
#qa .faq_wrap {
  background-color: #fff;
}
#qa .faq_wrap .faq_set {
  position: relative;
  overflow: hidden;
}

#qa .faq_wrap .faq_set .q,
#qa .faq_wrap .faq_set .a {
  position: relative;
  padding: 18px 20px 18px 75px;
}
@media only screen and (max-width: 768px) {
  #qa .faq_wrap .faq_set .q,
  #qa .faq_wrap .faq_set .a {
    padding: 1.5em 1.5em 1.5em 3.5em;
  }
}
#qa .faq_wrap .faq_set .q:before,
#qa .faq_wrap .faq_set .a:before {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  margin-right: 16px;
  position: absolute;
  left: 20px;
  top: 25px;
}
#qa .faq_wrap .faq_set .q:before {
  top: 16px;
}

@media only screen and (max-width: 768px) {
  #qa .faq_wrap .faq_set .q:before,
  #qa .faq_wrap .faq_set .a:before {
    top: 0.8em;
    left: 0.8em;
  }
}
#qa .faq_wrap .faq_set .q {
  color: var(--color-main);
  border: 1px solid var(--color-border);
  border-bottom: none;
  cursor: pointer;
}
#qa .faq_wrap .faq_set:last-child > .q {
  border-bottom: 1px solid var(--color-border);
}
#qa .faq_wrap .faq_set:last-child > .q.open {
  border-bottom: none;
}
#qa .faq_wrap .faq_set .q span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding-right: 2em;
}
@media only screen and (max-width: 768px) {
  #qa .faq_wrap .faq_set .q span {
    font-size: 100%;
    padding-top: 0;
  }
}
#qa .faq_wrap .faq_set .q span.mark {
  background-color: #fff;
  border-radius: 1.6em;
  width: 1.6em;
  height: 1.6em;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
#qa .faq_wrap .faq_set .q span.mark:before,
#qa .faq_wrap .faq_set .q span.mark:after {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: var(--color-main);
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#qa .faq_wrap .faq_set .q span.mark:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
#qa .faq_wrap .faq_set .q:before {
  content: "Q";
}
#qa .faq_wrap .faq_set .q.open span.mark:after {
  transform: translate(-50%, -50%);
}
#qa .faq_wrap .faq_set .a {
  display: none;
  padding-top: 0;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--color-border);
  background-color: var(--color-bg-faq);
}
/* 閉じるときの border-top（旧 ::details-content の transition に相当） */
#qa .faq_wrap .faq_set:not(:last-child) .a.is-faq-a-closing {
  border-top-width: 0;
  -webkit-transition: border-top-width 0s linear 370ms;
  transition: border-top-width 0s linear 370ms;
}
#qa .faq_wrap .faq_set:last-child .a.is-faq-a-closing-last {
  border-top-width: 0;
  -webkit-transition: border-top-width 0s linear 0ms;
  transition: border-top-width 0s linear 0ms;
}
#qa .faq_wrap .faq_set .a:before {
  content: "A";
  color: var(--color-main);
}
#qa .faq_wrap .faq_set .a .a_cont {
  font-size: 16px;
  padding: 1.5em 0 1em;
}
@media only screen and (max-width: 768px) {
  #qa .faq_wrap .faq_set .a .a_cont {
    font-size: 92.9%;
    padding: 1.5em 0 0;
  }
}
#qa .faq_wrap .faq_set .a .a_cont a {
  color: #0c95ff;
  display: inline-block;
  text-decoration: underline;
}
@media only screen and (min-width: 1025px) {
  #qa .faq_wrap .faq_set .a .a_cont a:hover {
    text-decoration: none;
  }
}
#qa .faq_wrap .faq_set .a .a_cont p + a,
#qa .faq_wrap .faq_set .a .a_cont a + p {
  margin-top: 0.5em;
}
#qa .faq_wrap .faq_set .a .a_cont ul + img,
#qa .faq_wrap .faq_set .a .a_cont img + ul {
  margin-top: 1.5em;
}

#footer {
  background: #fff;
  position: relative;
  z-index: 2;
}
#footer #footer_logo {
  padding: 20px 0 30px;
}
#footer #footer_logo img {
  margin: 0 auto;
}
#footer #footer_logo img {
  margin: 0 auto;
  width: 300px;
}
@media only screen and (max-width: 768px) {
  #footer #footer_logo {
    margin-bottom: 5vw;
    padding: 2.2222222222vw 0 3.3333333333vw;
  }
  #footer #footer_logo img {
    width: 35.5555555556vw;
  }
}
@media only screen and (max-width: 600px) {
  #footer #footer_logo {
    margin-bottom: 0;
    padding: 10px 0 10px;
  }
  #footer #footer_logo img {
    width: 140px;
  }
}

/*                footer
======================================================= */

#footer {
  background: #fff;
  position: relative;
  z-index: 2;
}
#footer #footer_logo {
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  #footer #footer_logo {
    margin-bottom: 5vw;
  }
}
#footer #footer_logo img {
  width: 248px;
  margin: 0 auto;
}

#footer {
  background: #fff;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #footer {
    background: #fff;
  }
}
#footer .sp_view ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#footer .sp_view ul li {
  width: 33.3333333%;
}

#footer #route_map {
  padding: 30px 0 50px;
}

@media screen and (max-width: 768px) {
  #footer #route_map {
    padding: 10vw 0 10vw;
  }
}
#footer #btm_logo {
  position: relative;
  z-index: 2;
  padding-bottom: 33px;
}

@media screen and (max-width: 768px) {
  #footer #btm_logo {
    padding: 0 30px 7vw;
  }
  #footer #btm_logo .sp_view {
    position: relative;
  }
  #footer #btm_logo .sp_view a {
    display: block;
    position: absolute;
    z-index: 2;
  }
  #footer #btm_logo .sp_view a.left {
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
  }
  #footer #btm_logo .sp_view a.right {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
  }
  #footer #btm_logo img {
    position: relative;
    z-index: 2;
  }
  #footer #btm_logo:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
  }
}

/*                追加
======================================================= */

.friends {
  width: 100%;
  color: #fff;
  font-size: 200%;
  text-align: center;
  margin: 0 auto;
  font-feature-settings: normal;
  font-family: "M PLUS Rounded 1c", sans-serif;

}
@media only screen and (max-width: 768px) {
  .friends {
    font-size: 150%;
  }
}

.get {
  width: 100%;
  color: #fff;
  font-size: 200%;
  text-align: center;
  margin: 0 auto;
  font-feature-settings: normal;
  font-family: "M PLUS Rounded 1c", sans-serif;

}
@media only screen and (max-width: 768px) {
  .get {
    font-size: 150%;
  }
}

