@charset "UTF-8";

/*------------------------------------------------------------------------------
    config
------------------------------------------------------------------------------*/
/***  media ***/
/***  color ***/
/*** font ***/
/*------------------------------------------------------------------------------
    reset
------------------------------------------------------------------------------*/
html {
  color: #262525;
}

body {
  margin: 0;
  color: #262525;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 1.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 1em;
  padding: 0;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #262525;
  text-decoration: none;
}

a:link,
a:visited {
  color: #262525;
  text-decoration: none;
}

input,
textarea,
select {
  border-radius: 0;
  outline: none;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

dd {
  margin-inline-start: 0;
}

dl {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

#wrapper {
  position: relative;
  padding: 0;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/*------------------------------------------------------------------------------
    CSS reset
------------------------------------------------------------------------------*/
@media screen and (max-width: 851px) {
  body {
    position: static;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
  }

  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }

  img {
    width: 100%;
    max-width: 100%;
  }

  input[type="submit"] {
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  input,
  select,
  textarea {
    font-size: 1.6rem !important;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

body,
p {
  line-height: 1.6;
}

@media screen and (min-width: 850px) {
  a {
    transition: 0.3s ease-in-out;
  }

  a:hover {
    opacity: 0.7;
  }
}

button {
  outline: none;
}

.inner {
  max-width: 985px;
  width: 100%;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 851px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*------------------------------------------------------------------------------
    フェードインのCSS
------------------------------------------------------------------------------*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.scrollanime2 {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.leftin {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}

.rightin {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.slide-left {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}

/* -------------------------------フェードインのCSS */
/*------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------*/
#header {
  background: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 145px;
  display: flex;
  align-items: center;
}

#header .inner {}

#header .inner .header_nav {
  display: flex;
  align-items: center;
}

#header .inner .header_link {
  display: table;
  margin: 10px 20px 0 auto;
  text-decoration: underline;
  font-size: 25px;
}

@media screen and (max-width: 851px) {
  #header .inner .header_nav {
    display: block;
  }

  #header .inner .header_link {
    margin: 10px auto 0;
    font-size: 20px;
  }
}

@media screen and (max-width: 851px) {
  #header {
    height: 145px;
    top: 0px;
  }
}

#header .logo {
  height: auto;
  margin: auto;
  margin-left: 0;
}

@media screen and (max-width: 851px) {
  #header .logo {
    margin-left: auto;
  }
}

#header .logo img {
  max-width: 341px;
  vertical-align: middle;
}

@media screen and (max-width: 851px) {
  #header .logo img {
    max-width: 168px;
  }
}

@media screen and (max-width: 851px) {
  #header .logo {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: auto;
  }
}

#header .btn_item {
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 18px;
}

@media screen and (max-width: 851px) {
  #header .btn_item {
    margin-right: auto;
    column-gap: 23px;
    margin-top: 16px;
  }
}

@media screen and (max-width: 851px) {
  #header .btn_item .tel {
    width: calc(50% - 11.5px);
  }
}

#header .btn_item .tel a {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #2E56AF;
  position: relative;
  padding: 0 35px 0 65px;
  border-radius: 8px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  height: 56px;
  white-space: nowrap;
}

@media screen and (max-width: 851px) {
  #header .btn_item .tel a {
    text-align: center;
    height: 32px;
    line-height: 1;
    width: 100%;
    font-size: 10px;
    padding: 0 0 0 20px;
    justify-content: center;
    padding-bottom: 3px;
    border-radius: 4px;
  }
}

#header .btn_item .tel a span {
  white-space: nowrap;
  display: block;
  font-size: 16px;
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

@media screen and (max-width: 851px) {
  #header .btn_item .tel a span {
    font-size: 14px;
  }
}

#header .btn_item .tel a::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  left: 16px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/icon_tel.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #header .btn_item .tel a::after {
    width: 12px;
    height: 12px;
    left: 8px;
  }
}

@media screen and (max-width: 851px) {
  #header .btn_item .mail {
    width: calc(50% - 11.5px);
  }
}

#header .btn_item .mail a {
  white-space: nowrap;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #FF588C;
  position: relative;
  padding: 0 18px 0 65px;
  border-radius: 8px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  height: 56px;
}

@media screen and (max-width: 851px) {
  #header .btn_item .mail a {
    border-radius: 4px;
    width: 100%;
    height: 32px;
    padding: 0 0 0 16px;
    justify-content: center;
  }
}

#header .btn_item .mail a::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  left: 16px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/icon_mail.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #header .btn_item .mail a::after {
    width: 15.5px;
    height: 12px;
    left: 8px;
  }
}

#mv {
  position: relative;
  margin-top: 145px;
}

@media screen and (max-width: 851px) {
  #mv {
    margin-top: 143px;
  }
}

#mv .bg {
  width: 100%;
}

#mv .txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#mv .txt .inner {
  padding-left: 30px;
  display: flex;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 851px) {
  #mv .txt .inner {
    padding-top: 25px;
    align-items: flex-start;
  }
}

#mv .txt .ttl {
  max-width: 315px;
}

@media screen and (max-width: 851px) {
  #mv .txt ul {
    margin-top: 8px;
  }
}

#mv .txt ul li {
  position: relative;
  padding-left: 17px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  line-height: 1.444;
  letter-spacing: 0.02em;
  margin-top: 9px;
}

@media screen and (max-width: 851px) {
  #mv .txt ul li {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.5;
  }
}

#mv .txt ul li::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/mv_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

/* footer 固定メニュー */
.flex_item {
  position: fixed;
  right: 50px;
  bottom: 0;
  z-index: 50;
}

@media screen and (max-width: 851px) {
  .flex_item {
    /* right: 10px; */
    width: 100%;
    left: 0;
  }

  .flex_item ul .f_tel,
  .flex_item ul .f_con {
    width: calc(100% / 2 - 60px);
  }

  .flex_item ul .f_line {
    width: 60px;
  }
}

.flex_item ul {
  /* column-gap: 9px; */
  display: flex;
}

.flex_item ul li {
  width: fit-content;
}

.flex_item ul .f_tel a {
  background: #2E56AF;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  height: 54px;
  display: flex;
  padding: 0 16px;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 851px) {
  .flex_item ul .f_tel a {
    justify-content: center;
    height: 49px;
    font-size: 10px;
    padding: 0 7px;
    line-height: 100%;
  }
}

.flex_item ul .f_tel a span {
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  font-family: "Righteous", sans-serif;
  display: block;
}

@media screen and (max-width: 851px) {
  .flex_item ul .f_tel a span {
    font-size: 16px;
    line-height: 100%;
  }
}

.flex_item ul .f_con a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  height: 54px;
  display: flex;
  padding: 0 19px;
  align-items: center;
  text-align: center;

  background: #FF588C;
  color: #fff;
}

@media screen and (max-width: 851px) {
  .flex_item ul .f_con a {
    justify-content: center;
    height: 49px;
    font-size: 14px;
    padding: 0 4px;
  }
}

.flex_item ul .f_line a {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5;
  height: 54px;
  display: flex;
  padding: 0 19px;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;

  background: #fff;
  color: #363636;
}

.flex_item ul .f_line div {
  text-align: center;
}

@media screen and (max-width: 851px) {
  .flex_item ul .f_line a {
    justify-content: center;
    height: 49px;
    font-size: 10px;
    padding: 0 4px;
  }
}

.flex_item ul .f_topup {
  position: absolute;
  right: 10px;
  bottom: 60px;
  border-radius: 50%;
  border: 2px solid #D7D7D7;
  background: #FFF;
  display: inline-flex;
  padding: 10px;
  align-items: center;
  line-height: 0;
}

.flex_item ul .f_topup img {
  width: 20px;
  height: 20px;
}

/* 
.flex_item ul .f_top a {
  background: #ffffff;
  color: #D7D7D7;
  border: 2px solid #D7D7D7;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  height: 54px;
  border-radius: 8px 8px 0 0;
  padding: 0 5px;
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 851px) {
  .flex_item ul .f_top a {
    height: 49px;
    font-size: 14px;
    padding: 0 15px;
  }
  .flex_item ul .f_top a .txt {
    display: none;
  }
}
.flex_item ul .f_top a div {
  text-align: center;
}
.flex_item ul .f_top a img {
  max-width: 16px;
}
.flex_item ul .f_top a span {
  display: block;
} */
#main {
  margin-top: -10px;
}

@media screen and (max-width: 851px) {
  #main {
    margin-top: 15px;
  }
}

@media screen and (max-width: 851px) {
  #main .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

#main .content {
  position: relative;
}

#main .bg {
  position: absolute;
  bottom: 0;
  left: calc(50% - 265.5px);
  width: 531px;
  height: 419px;
  z-index: 1;
  display: flex;
}

@media screen and (max-width: 851px) {
  #main .bg {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
  }
}

#main .ttl {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4375;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  z-index: 10;
}

@media screen and (max-width: 851px) {
  #main .ttl {
    font-size: 24px;
  }
}

#main .ttl::after {
  position: absolute;
  content: '';
  background: #2E56AF;
  width: 64px;
  height: 5px;
  border-radius: 5px;
  bottom: 0;
  left: calc(50% - 32px);
}

#main .ttl span {
  font-size: 40px;
  font-weight: bold;
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #main .ttl span {
    font-size: 32px;
  }
}

#main dl {
  display: flex;
  padding-top: 100px;
  width: 100%;
  padding-bottom: 40px;
  margin-bottom: 0;
}

@media screen and (max-width: 851px) {
  #main dl {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 851px) {
  #main dl {
    padding-top: 4px;
    display: block;
    padding-bottom: 24px;
  }
}

#main dl dt {
  display: flex;
  width: 50%;
  justify-content: left;
  align-items: center;
}

@media screen and (max-width: 851px) {
  #main dl dt {
    width: 100%;
  }
}

#main dl dd {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: right;
}

@media screen and (max-width: 851px) {
  #main dl dd {
    width: 100%;
    margin-top: 16px;
  }
}

#main ul {
  position: relative;
  z-index: 40;
}

@media screen and (max-width: 851px) {
  #main ul {
    width: 100%;
  }
}

#main ul li {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
  background: #ffffff;
  border-radius: 10px;
  padding: 15px 0 15px 32px;
  width: 243px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.444;
  position: relative;
}

@media screen and (max-width: 851px) {
  #main ul li {
    padding: 16px 0 16px 32px;
    width: 100%;
    font-size: 16px;
  }
}

#main ul li::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  left: 8px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/main_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

#main ul li+li {
  margin-top: 30px;
}

@media screen and (max-width: 851px) {
  #main ul li+li {
    margin-top: 16px;
  }
}

#main ul li span {
  color: #FF588C;
}

#main ul .m_l_45 {
  margin-left: 45px;
}

@media screen and (max-width: 851px) {
  #main ul .m_l_45 {
    margin-left: 0;
  }
}

.tabi {
  background: linear-gradient(to bottom, #1A3F91, #2E56AF);
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.444;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 851px) {
  .tabi {
    font-size: 32px;
    line-height: 1.4375;
  }
}

.tabi .inner {
  padding-top: 35px;
  padding-bottom: 35px;
}

@media screen and (max-width: 851px) {
  .tabi .inner {
    padding-top: 30px;
    padding-bottom: 22px;
  }
}

.tabi span {
  color: #FFE765;
}

.tabi img {
  max-width: 63px;
  height: 27px;
  margin: auto;
  display: block;
  margin-bottom: 18px;
}

@media screen and (max-width: 851px) {
  .tabi img {
    margin-bottom: 8px;
    max-width: 64px;
    height: 24px;
  }
}

#features {
  background: url(../img/features_bg.png) no-repeat center / contain;
  background-size: cover;
  background-position-y: bottom;
  background-position-x: center;
}

@media screen and (max-width: 851px) {
  #features {
    background: url(../img/features_bg_sp.png) no-repeat center / contain;
    background-size: 100% auto;
    background-position-y: bottom;
    background-position-x: center;
  }
}

#features .inner {
  padding-top: 60px;
  padding-bottom: 160px;
}

@media screen and (max-width: 851px) {
  #features .inner {
    padding-top: 50px;
    padding-bottom: 85px;
  }
}

#features .ttl {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 95px;
}

@media screen and (max-width: 851px) {
  #features .ttl {
    margin-bottom: 80px;
    display: block;
    text-align: center;
  }
}

#features .ttl .p {
  color: #FF588C;
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 100%;
}

#features .ttl .b {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 100%;
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #features .ttl .b {
    font-size: 48px;
  }
}

#features .ttl .b span {
  display: block;
  line-height: 100%;
  font-family: "Righteous", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #features .ttl .b span {
    display: block;
  }
}

#features ul {
  display: flex;
  column-gap: 54px;
}

@media screen and (max-width: 1000px) {
  #features ul {
    column-gap: 30px;
  }
}

@media screen and (max-width: 851px) {
  #features ul {
    display: block;
  }
}

#features ul li {
  width: calc(33.3333% - 36px);
  border-radius: 18px;
  background: #ffffff;
  padding: 30px 25px 30px 30px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  #features ul li {
    width: calc(33.3333% - 20px);
  }
}

@media screen and (max-width: 851px) {
  #features ul li {
    padding: 50px 15px 30px 15px;
    width: 100%;
  }

  #features ul li+li {
    margin-top: 80px;
  }
}

#features ul li:nth-child(1)::after {
  position: absolute;
  content: "";
  width: 103px;
  height: 103px;
  left: 40px;
  top: 40px;
  z-index: 1;
  background: url(../img/li01_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #features ul li:nth-child(1)::after {
    width: 80px;
    height: 80px;
    left: 15px;
    top: 10px;
  }
}

#features ul li:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 88px;
  left: 50px;
  top: 50px;
  z-index: 1;
  background: url(../img/li02_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #features ul li:nth-child(2)::after {
    width: 80px;
    height: 80px;
    left: 15px;
    top: 14px;
  }
}

#features ul li:nth-child(3)::after {
  position: absolute;
  content: "";
  width: 101px;
  height: 101px;
  left: 10px;
  top: 40px;
  z-index: 1;
  background: url(../img/li03_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #features ul li:nth-child(3)::after {
    width: 88px;
    height: 88px;
    left: 15px;
    top: 8px;
  }
}

#features ul li .icon {
  position: absolute;
  left: calc(50% - 54px);
  top: -54px;
  background: #ffffff;
  border-radius: 100%;
  font-size: 72px;
  font-family: "Righteous", sans-serif;
  color: #E6ECF7;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  width: 108px;
  height: 108px;
  z-index: 1;
}

#features ul li .sub_ttl {
  position: relative;
  z-index: 5;
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #2E56AF;
  line-height: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 851px) {
  #features ul li .sub_ttl {
    font-size: 32px;
    min-height: auto;
    margin-bottom: 15px;
  }
}

#features ul li .sub_ttl div {
  text-align: center;
}

#features ul li .sub_ttl span {
  font-size: 27px;
  line-height: 90%;
  display: block;
}

@media screen and (max-width: 851px) {
  #features ul li .sub_ttl span {
    font-size: 24px;
    margin-left: 8px;
    margin-right: 8px;
    display: inline-block;
  }
}

#features ul li p {
  position: relative;
  z-index: 5;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4444;
}

@media screen and (max-width: 851px) {
  #features ul li p {
    font-size: 16px;
    line-height: 1.5;
  }
}

#riyu {
  position: relative;
}

#riyu::after {
  position: absolute;
  content: "";
  width: 494px;
  height: 1149px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/riyu_bg.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
  background-size: 100% 100%;
}

@media screen and (max-width: 851px) {
  #riyu::after {
    display: none;
  }
}

#riyu .inner {
  position: relative;
  z-index: 10;
  padding-top: 60px;
}

@media screen and (max-width: 851px) {
  #riyu .inner {
    padding-top: 22px;
  }
}

#riyu ul {
  width: 100%;
}

#riyu ul li {
  width: 100%;
}

#riyu ul li+li {
  margin-top: 40px;
}

@media screen and (max-width: 851px) {
  #riyu ul li+li {
    margin-top: 25px;
  }
}

#riyu ul li .ttl {
  line-height: 1.44444;
  padding: 1px;
  background: #2E56AF;
  border-radius: 38px;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
  margin-bottom: 35px;
}

@media screen and (max-width: 851px) {
  #riyu ul li .ttl {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 1.2375;
    border-radius: 66px;
    padding: 14px 2px;
  }
}

#riyu ul li .ttl span {
  color: #FFE765;
}

@media screen and (max-width: 851px) {
  #riyu ul li .ttl span {
    display: block;
  }
}

#riyu ul li .sub_ttl {
  width: 100%;
  border-bottom: 1px solid #262525;
  padding-bottom: 15px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-left: 33px;
  position: relative;
  line-height: 100%;
  margin-bottom: 18px;
}

@media screen and (max-width: 851px) {
  #riyu ul li .sub_ttl {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    line-height: 1.458;
    padding-left: 30px;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
}

#riyu ul li .sub_ttl::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 2px;
  border-radius: 100%;
  z-index: 1;
  background: #7297FA;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #riyu ul li .sub_ttl::after {
    top: 7px;
  }
}

#riyu ul li .m_b_35 {
  margin-bottom: 35px;
}

@media screen and (max-width: 851px) {
  #riyu ul li .m_b_35 {
    margin-bottom: 25px;
  }
}

#riyu ul li dl {
  display: flex;
  margin-top: 0;
}

@media screen and (max-width: 851px) {
  #riyu ul li dl {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
  }
}

#riyu ul li dl dt {
  width: 50%;
  padding-right: 20px;
}

@media screen and (max-width: 851px) {
  #riyu ul li dl dt {
    width: 100%;
    padding-right: 0;
  }
}

#riyu ul li dl dd {
  width: 50%;
  padding-left: 20px;
}

@media screen and (max-width: 851px) {
  #riyu ul li dl dd {
    padding-top: 25px;
    width: 100%;
    padding-left: 0;
  }
}

#riyu ul li dl dd .b {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.423;
  text-align: left;
  margin-bottom: 10px;
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #riyu ul li dl dd .b {
    font-size: 24px;
    line-height: 1.4583;
    margin-bottom: 24px;
    text-align: center;
  }
}

#riyu ul li dl dd p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.444;
}

@media screen and (max-width: 851px) {
  #riyu ul li dl dd p {
    font-size: 16px;
    line-height: 1.5;
  }
}

#riyu ul li:nth-child(1) dt {
  padding-right: 45px;
}

@media screen and (max-width: 851px) {
  #riyu ul li:nth-child(1) dt {
    padding-right: 0;
  }
}

@media screen and (max-width: 851px) {
  #riyu ul li:nth-child(3) .ttl {
    border-radius: 126px;
    line-height: 1.181;
  }
}

#tuyomi {
  background: url(../img/group_bg.png) no-repeat center / contain;
  background-size: 100% 100%;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 851px) {
  #tuyomi {
    margin-top: 20px;
    background: url(../img/tuyomi_bg_sp.png) no-repeat center / contain;
    background-size: 100% 100%;
  }
}

#tuyomi .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 171px;
  font-weight: 400;
  font-family: "Righteous", sans-serif;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.122;
  opacity: 0.6;
}

@media screen and (max-width: 851px) {
  #tuyomi .bg {
    left: 10px;
    align-items: end;
    background-size: cover;
    font-size: 140px;
    opacity: 0.8;
    padding-bottom: 510px;
  }
}

#tuyomi .inner {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  max-width: 1140px;
  padding-bottom: 155px;
}

@media screen and (max-width: 851px) {
  #tuyomi .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#tuyomi .ttl {
  font-size: 81px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #2E56AF;
  text-align: center;
  position: relative;
  width: 100%;
  width: fit-content;
  padding-left: 50px;
  padding-right: 50px;
  margin: auto;
}

@media screen and (max-width: 851px) {
  #tuyomi .ttl {
    font-size: 48px;
    line-height: 1.125;
  }
}

#tuyomi .ttl::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 119px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/group_l.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #tuyomi .ttl::after {
    width: 64px;
    height: 80px;
    bottom: 3px;
  }
}

#tuyomi .ttl::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 119px;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/group_r.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #tuyomi .ttl::before {
    width: 64px;
    height: 80px;
    bottom: 3px;
  }
}

#tuyomi .ttl span {
  display: block;
  color: #262525;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 15px;
}

@media screen and (max-width: 851px) {
  #tuyomi .ttl span {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.125;
  }
}

#tuyomi .tuyomi_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin: 50px auto 0;
}

@media screen and (max-width: 851px) {
  #tuyomi .tuyomi_flex {
    display: flex;
    flex-direction: column;
    margin: 30px auto 0;
    max-width: 300px;
  }
}

#tuyomi .tuyomi_flex .tuyomi_items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

#tuyomi .tuyomi_flex .tuyomi_items img:first-of-type {
  width: 64px;
}

#tuyomi .tuyomi_flex .tuyomi_items h3 {
  display: flex;
  align-items: center;
  margin: 5px 0;
  height: 90px;
  color: #2E56AF;
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}

#tuyomi .tuyomi_flex .tuyomi_items h3 span {
  font-size: 32px;
}

#tuyomi .tuyomi_flex .tuyomi_items p {
  letter-spacing: 0;
  margin: 20px 0 0;
  font-size: 17px;
  color: #555;
}

@media screen and (max-width: 851px) {
  #tuyomi .tuyomi_flex .tuyomi_items p {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

#tiryou {
  padding-top: 60px;
  z-index: 10;
  position: relative;
}

#tiryou::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 940px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/group_after.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
  background-size: 100% 100%;
  background-position-y: bottom;
}

@media screen and (max-width: 851px) {
  #tiryou::after {
    height: 651px;
    background: url(../img/group_after_sp.png) no-repeat center / contain;
    background-size: 100% 100%;
    background-position-y: bottom;
  }
}

#tiryou .inner {
  padding-bottom: 60px;
}

@media screen and (max-width: 851px) {
  #tiryou .inner {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 851px) {
  #tiryou {
    padding-top: 25px;
  }
}

#tiryou .ttl {
  position: relative;
  z-index: 10;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #2E56AF;
  text-align: center;
  line-height: 1.444;
  margin-bottom: 35px;
}

@media screen and (max-width: 851px) {
  #tiryou .ttl {
    margin-bottom: 25px;
    line-height: 1.125;
    font-size: 32px;
  }
}

#tiryou .ttl span {
  font-weight: bold;
  color: #FF588C;
}

@media screen and (max-width: 851px) {
  #tiryou .ttl span {
    display: block;
    font-size: 32px;
  }
}

#tiryou .banner {
  position: relative;
  z-index: 10;
  width: 100%;
}

#tiryou .banner img {
  width: 100%;
}

#tiryou .b01 {
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 {
    margin-top: 25px;
  }
}

#tiryou .b01 .b01_ttl {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  line-height: 1.444;
  color: #2E56AF;
  position: relative;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 .b01_ttl {
    font-size: 32px;
    line-height: 1.4375;
    padding-top: 16px;
    padding-bottom: 16px;
    letter-spacing: 0;
  }
}

#tiryou .b01 .b01_ttl::after {
  position: absolute;
  content: "";
  width: 81px;
  height: 2px;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #2E56AF;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 .b01_ttl::after {
    top: 0;
    width: 80px;
    left: calc(50% - 40px);
  }
}

#tiryou .b01 .b01_ttl::before {
  position: absolute;
  content: "";
  width: 81px;
  height: 2px;
  right: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #2E56AF;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 .b01_ttl::before {
    top: auto;
    bottom: 0;
    width: 80px;
    left: calc(50% - 40px);
  }
}

#tiryou .b01 dl {
  display: flex;
  margin-top: 35px;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 dl {
    display: block;
    margin-top: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

#tiryou .b01 dl dt {
  width: 342px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E56AF;
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 1.4444;
  font-weight: 500;
  border-left: 27px solid #7297FA;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 dl dt {
    width: 100%;
    border-left: none;
  }
}

#tiryou .b01 dl dd {
  width: calc(100% - 342px);
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4444;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 dl dd {
    padding-top: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
}

#tiryou .b01 dl dd .sub_ttl {
  margin-bottom: 18px;
  border-bottom: 1px solid #2E56AF;
  padding-bottom: 18px;
  text-align: left;
  font-size: 27px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  line-height: 1.4444;
}

@media screen and (max-width: 851px) {
  #tiryou .b01 dl dd .sub_ttl {
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    text-align: center;
  }
}

#tiryou .b02 {
  position: relative;
  z-index: 10;
  margin-top: 65px;
  background: linear-gradient(to bottom, #ffffff, #F0EFEF);
  border: 2px solid #ffffff;
  width: 100%;
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 851px) {
  #tiryou .b02 {
    padding: 16px;
    margin-top: 20px;
  }
}

#tiryou .b02 .b02_ttl {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: auto;
  line-height: 1.444;
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #tiryou .b02 .b02_ttl {
    line-height: 1.4375;
    font-size: 32px;
  }
}

#tiryou .b02 .b02_ttl span {
  display: block;
  color: #FFE765;
  background: #2E56AF;
  line-height: 54px;
  text-align: center;
  border-radius: 27px;
  width: 100%;
  max-width: 414px;
  font-weight: bold;
  height: fit-content;
  margin: auto;
  position: relative;
  margin-bottom: 10px;
}

@media screen and (max-width: 851px) {
  #tiryou .b02 .b02_ttl span {
    margin-bottom: 25px;
    max-width: 100%;
  }
}

#tiryou .b02 .b02_ttl span::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 15px;
  left: calc(50% - 9px);
  bottom: -15px;
  z-index: 1;
  background: url(../img/b02_ttl_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #tiryou .b02 .b02_ttl span::after {
    width: 16px;
    height: 16px;
    left: calc(50% - 8px);
    bottom: -15px;
  }
}

#tiryou .b02 dl {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 0;
  margin-top: 30px;
}

@media screen and (max-width: 851px) {
  #tiryou .b02 dl {
    margin-top: 10px;
    display: block;
  }
}

#tiryou .b02 dl dt {
  width: 50%;
  padding-left: 20px;
}

@media screen and (max-width: 851px) {
  #tiryou .b02 dl dt {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  #tiryou .b02 dl dt img {
    max-width: 224px;
    margin: auto;
  }
}

#tiryou .b02 dl dd {
  width: 50%;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.444;
}

#tiryou .b02 dl dd span {
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #tiryou .b02 dl dd {
    padding-top: 10px;
    font-size: 16px;
    width: 100%;
    padding-right: 0;
  }
}

#cta {
  background: url(../img/cta_bg.png) no-repeat center / contain;
  background-size: 100% 100%;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 851px) {
  #cta {
    background: url(../img/cta_bg_sp.png) no-repeat center / contain;
    background-size: 100% 100%;
  }
}

#cta .inner {
  padding-bottom: 70px;
  padding-top: 70px;
}

@media screen and (max-width: 851px) {
  #cta .inner {
    padding-bottom: 55px;
    padding-top: 55px;
  }
}

#cta .ttl01 {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.37;
}

@media screen and (max-width: 851px) {
  #cta .ttl01 {
    font-size: 16px;
    line-height: 1.5;
  }
}

#cta .ttl02 {
  text-align: center;
  color: #2E56AF;
  display: flex;
  justify-content: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.444;
}

@media screen and (max-width: 851px) {
  #cta .ttl02 {
    font-size: 31px;
    letter-spacing: 0;
    margin-top: 5px;
  }
}

#cta .ttl03 {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4375;
  margin-top: 18px;
}

@media screen and (max-width: 851px) {
  #cta .ttl03 {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.458;
  }
}

#cta .telb {
  font-size: 54px;
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.111;
  display: block;
  color: #2E56AF;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}

@media screen and (max-width: 851px) {
  #cta .telb {
    margin-top: 5px;
    font-size: 40px;
  }
}

#cta .small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4285;
  text-align: center;
}

@media screen and (max-width: 851px) {
  #cta .small {
    margin-top: 8px;
  }
}

#cta dl {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 0;
  margin-top: 20px;
}

@media screen and (max-width: 851px) {
  #cta dl {
    margin-top: 15px;
    display: block;
  }
}

#cta dl dt {
  width: 50%;
  padding-left: 20px;
}

@media screen and (max-width: 851px) {
  #cta dl dt {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

#cta dl dd {
  width: 50%;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.444;
}

#cta dl dd span {
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #cta dl dd {
    padding-top: 16px;
    font-size: 16px;
    width: 100%;
    padding-right: 0;
  }
}

#cta dl dd ul {
  width: 100%;
}

#cta dl dd ul li {
  background: #2E56AF;
  color: #ffffff;
  width: 100%;
  border-radius: 9px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4444;
}

@media screen and (max-width: 851px) {
  #cta dl dd ul li {
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.5;
  }
}

#cta dl dd ul li+li {
  margin-top: 9px;
}

@media screen and (max-width: 851px) {
  #cta dl dd ul li+li {
    margin-top: 8px;
  }
}

#cta p {
  text-align: center;
  color: #2E56AF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4444;
  margin-top: 20px;
}

@media screen and (max-width: 851px) {
  #cta p {
    font-size: 16px;
    margin-top: 15px;
  }
}

#step {
  background: url(../img/step_bg.png) no-repeat bottom / contain;
  background-size: 683px 599px;
  background-position-x: right;
  background-position-y: bottom;
}

@media screen and (max-width: 851px) {
  #step {
    background: none;
  }
}

#step .inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 851px) {
  #step .inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

#step .content {
  border-radius: 9px;
  border: 1px solid #2E56AF;
  padding: 35px;
}

@media screen and (max-width: 851px) {
  #step .content {
    padding: 16px 16px 18px 16px;
  }
}

#step .ttl {
  width: 100%;
  max-width: fit-content;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

@media screen and (max-width: 851px) {
  #step .ttl {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#step .ttl::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 100%;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/step_l.png) no-repeat center / contain;
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #step .ttl::after {
    background: url(../img/step_l_sp.png) no-repeat center / contain;
    background-size: 100% 100%;
  }
}

#step .ttl::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 100%;
  right: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/step_r.png) no-repeat center / contain;
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #step .ttl::before {
    background: url(../img/step_r_sp.png) no-repeat center / contain;
    background-size: 100% 100%;
  }
}

#step .ttl span {
  background: #E6ECF7;
  line-height: 54px;
  text-align: center;
  width: fit-content;
  display: block;
  padding-left: 27px;
  padding-right: 27px;
  color: #2E56AF;
  font-size: 36px;
  letter-spacing: 0.02em;
  font-weight: bold;
}

@media screen and (max-width: 851px) {
  #step .ttl span {
    font-size: 32px;
    line-height: 1.437;
    padding: 10px 5px;
    letter-spacing: 0;
  }
}

#step ul {
  display: block;
  margin: auto;
  margin-top: 32px;
  width: 100%;
  max-width: 565px;
}

@media screen and (max-width: 851px) {
  #step ul {
    max-width: 100%;
  }
}

#step ul li+li {
  margin-top: 18px;
}

@media screen and (max-width: 851px) {
  #step ul li+li {
    margin-top: 32px;
  }
}

#step ul li .icon {
  width: 117px;
  text-align: center;
  border: 1px solid #2E56AF;
  border-radius: 14px;
  line-height: 27px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Righteous", sans-serif;
  letter-spacing: 0.1em;
  color: #2E56AF;
  margin-left: 0;
  margin-bottom: 8px;
}

@media screen and (max-width: 851px) {
  #step ul li .icon {
    font-size: 16px;
    margin: auto;
    width: 120px;
  }
}

#step ul li dl {
  display: flex;
}

@media screen and (max-width: 851px) {
  #step ul li dl {
    display: block;
  }
}

#step ul li dl dt {
  width: 171px;
}

#step ul li dl dt .icon {
  display: none;
}

@media screen and (max-width: 851px) {
  #step ul li dl dt {
    width: 100%;
    text-align: center;
    padding-bottom: 8px;
  }

  #step ul li dl dt .icon {
    display: block;
    margin-bottom: 8px;
  }

  #step ul li dl dt img {
    max-width: 171px;
    margin: auto;
  }
}

#step ul li dl dd {
  width: calc(100% - 171px);
  padding-left: 34px;
  text-align: left;
}

#step ul li dl dd .icon {
  display: block;
}

@media screen and (max-width: 851px) {
  #step ul li dl dd {
    padding-left: 0;
    width: 100%;
  }

  #step ul li dl dd .icon {
    display: none;
  }
}

#step ul li dl dd p {
  padding-top: 8px;
  border-top: 1px solid #2E56AF;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.444;
  color: #262525;
}

@media screen and (max-width: 851px) {
  #step ul li dl dd p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}

#step ul li dl dd p span {
  color: #FF588C;
}

#faq {
  position: relative;
  background: #F4F4F4;
}

#faq::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 77px;
  right: 0;
  top: 0;
  z-index: 1;
  background: url(../img/faq_top.jpg) no-repeat center / contain;
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #faq::after {
    height: 68px;
    background: url(../img/faq_top_sp.jpg) no-repeat center / contain;
    background-size: 100% 100%;
  }
}

#faq::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 49px;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/faq_bottom.jpg) no-repeat center / contain;
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #faq::before {
    display: none;
  }
}

#faq .faq_c {
  position: relative;
  width: 100%;
  height: 100%;
}

#faq .faq_c::after {
  position: absolute;
  content: "";
  width: 211px;
  height: 536px;
  right: 0;
  top: 95px;
  z-index: 1;
  background: url(../img/faq_after.png) no-repeat center / contain;
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #faq .faq_c::after {
    width: 367px;
    height: 200px;
    right: 0;
    top: 65px;
    background: url(../img/faq_after_sp.png) no-repeat center / contain;
    background-size: 100% 100%;
  }
}

#faq .faq_c::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 238px;
  left: 0;
  bottom: 130px;
  z-index: 1;
  background: url(../img/faq_before.png) no-repeat center / contain;
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 851px) {
  #faq .faq_c::before {
    display: none;
  }
}

#faq .inner {
  position: relative;
  z-index: 10;
  padding-bottom: 70px;
}

@media screen and (max-width: 851px) {
  #faq .inner {
    padding-bottom: 25px;
  }
}

#faq .ttl {
  width: 100%;
  background: #2E56AF;
  color: #ffffff;
  border-radius: 38px;
  line-height: 72px;
  text-align: center;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 851px) {
  #faq .ttl {
    font-size: 32px;
    line-height: 1.2;
    border-radius: 66px;
    padding: 14px 5px;
  }
}

#faq .ttl span {
  color: #FFE765;
}

@media screen and (max-width: 851px) {
  #faq .ttl span {
    display: block;
  }
}

#faq .sub_ttl {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
  line-height: 1.444;
  margin-top: 25px;
}

@media screen and (max-width: 851px) {
  #faq .sub_ttl {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 10px;
  }
}

#faq .faq-list .faq-list_txt {
  position: relative;
  background: #ffffff;
  padding: 17px 45px;
  border: 1px solid #262525;
  border-radius: 8px;
  margin-top: 18px;
}

@media screen and (max-width: 851px) {
  #faq .faq-list .faq-list_txt {
    padding: 16px;
    margin-top: 16px;
  }
}

#faq .faq-list label {
  display: flex;
  cursor: pointer;
}

#faq .faq-list label:first-of-type {
  margin-top: 0;
}

#faq .faq-list label .faq-q {
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  padding-left: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 851px) {
  #faq .faq-list label .faq-q {
    font-size: 16px;
    padding-left: 8px;
  }
}

#faq .faq-list label .q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 24px;
  font-weight: 700;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  background: #FF588C;
  border-radius: 100%;
  line-height: 100%;
}

#faq .faq-list label:after {
  content: '';
  display: block;
  background: url(../img/open.png) center no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 851px) {
  #faq .faq-list label:after {
    right: -8px;
  }
}

#faq .faq-list input[type="checkbox"]:checked+label:after {
  content: '';
  display: block;
  background: url(../img/close.png) center no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 851px) {
  #faq .faq-list input[type="checkbox"]:checked+label:after {
    right: -8px;
  }
}

#faq .faq-list input[type="checkbox"].on-off {
  display: none;
}

#faq .faq-list .acc-inner {
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0;
  padding: 0;
  list-style: none;
}

#faq .faq-list .acc-inner .a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 24px;
  font-weight: 700;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  background: #7297FA;
  border-radius: 100%;
  line-height: 100%;
}

#faq .faq-list .acc-inner .acc_box {
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  padding-left: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding-right: 20px;
}

@media screen and (max-width: 851px) {
  #faq .faq-list .acc-inner .acc_box {
    font-size: 16px;
    padding-left: 8px;
    line-height: 1.5;
    padding-right: 0;
  }
}

#faq .faq-list label+.acc-inner {
  position: relative;
  /*height: 0;*/
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: max-height 0.5s;
}

#faq .faq-list input[type="checkbox"].on-off:checked+label+.acc-inner {
  max-height: 500px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: max-height 0.5s;
}

#faq .faq-list input[type="checkbox"].on-off:checked+label .acc-inner {
  /*position: relative;*/
  overflow: initial;
  transition: none;
}

#faq .faq-list .list {
  padding-top: 19px;
  margin-top: 19px;
  display: flex;
  border-top: 1px solid #262525;
}

@media screen and (max-width: 851px) {
  #faq .faq-list .list {
    padding-top: 16px;
    margin-top: 16px;
  }
}

#faq .faq-list:last-of-type {
  margin-bottom: 0;
}

#tel_item .inner {
  padding-top: 40px;
  max-width: 895px;
  padding-bottom: 34px;
}

@media screen and (max-width: 851px) {
  #tel_item .inner {
    padding-bottom: 8px;
    padding-top: 22px;
  }
}

.tel_box {
  background: #2E56AF;
  border-radius: 18px;
  padding: 35px 65px;
}

@media screen and (max-width: 851px) {
  .tel_box {
    padding: 16px;
  }
}

.tel_box .ttl {
  color: #FFE765;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: bold;
  line-height: 1.444;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 25px;
}

@media screen and (max-width: 851px) {
  .tel_box .ttl {
    margin-bottom: 15px;
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 1.458;
  }
}

.tel_box .ttl::after {
  bottom: 0;
  left: calc(50% - 31.5px);
  width: 63px;
  border-radius: 5px;
  height: 5px;
  content: '';
  position: absolute;
  background: #ffffff;
}

.tel_box p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.444;
}

@media screen and (max-width: 851px) {
  .tel_box p {
    margin-bottom: 15px;
    font-size: 16px;
  }
}

.tel_box ul {
  display: flex;
  column-gap: 13px;
}

@media screen and (max-width: 851px) {
  .tel_box ul {
    display: block;
  }
}

.tel_box ul li {
  width: calc(50% - 6.5px);
  padding: 0 16px;
}

@media screen and (max-width: 851px) {
  .tel_box ul li {
    width: 100%;
    padding: 0;
  }

  .tel_box ul li+li {
    margin-top: 8px;
  }
}

.tel_box ul .mail a {
  display: flex;
  width: 100%;
  height: 99px;
  background: #FF588C;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.444;
  font-size: 27px;
}

@media screen and (max-width: 851px) {
  .tel_box ul .mail a {
    height: 80px;
    font-size: 22px;
  }
}

.tel_box ul .tel a {
  display: flex;
  height: 99px;
  background: #ffffff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  color: #2E56AF;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.444;
  font-size: 18px;
}

@media screen and (max-width: 851px) {
  .tel_box ul .tel a {
    height: 80px;
  }
}

.tel_box ul .tel a span {
  display: block;
  font-size: 32px;
  font-weight: 400;
  font-family: "Righteous", sans-serif;
}

@media screen and (max-width: 851px) {
  .tel_box ul .tel a span {
    font-size: 29px;
  }
}

.tel_box ul .tel .small {
  text-align: right;
  width: 100%;
  margin-top: 10px;
  margin-left: -10px;
}

@media screen and (max-width: 851px) {
  .tel_box ul .tel .small {
    margin-left: auto;
    text-align: center;
  }
}

.tel_box ul .tel .small span {
  text-align: center;
  width: fit-content;
  margin: auto;
  margin-right: 0;
  color: #ffffff;
  display: block;
  font-weight: 500;
  line-height: 1.444;
  letter-spacing: 0.02em;
  font-size: 14px;
  white-space: nowrap;
}

@media screen and (max-width: 851px) {
  .tel_box ul .tel .small span {
    margin-right: auto;
  }
}

#addr .inner {
  padding-bottom: 62px;
}

@media screen and (max-width: 851px) {
  #addr .inner {
    padding-bottom: 24px;
  }
}

#addr .ttl {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1.444;
  letter-spacing: 0.02em;
  font-size: 36px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 16px;
}

@media screen and (max-width: 851px) {
  #addr .ttl {
    padding-bottom: 18px;
    margin-top: 16px;
    font-size: 24px;
    margin-bottom: 12px;
  }
}

#addr .ttl::after {
  bottom: 0;
  left: calc(50% - 32px);
  width: 64px;
  border-radius: 5px;
  height: 5px;
  content: '';
  position: absolute;
  background: #2E56AF;
}

#addr .ttl span {
  margin-right: 8px;
  max-width: 43px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 851px) {
  #addr .ttl span {
    max-width: 32px;
  }
}

#addr .addr_item {
  border: 1px solid #D7D7D7;
  border-radius: 9px;
  padding: 42px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item {
    padding: 16px;
  }
}

#addr .addr_item dl {
  display: flex;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl {
    display: block;
  }
}

#addr .addr_item dl dt {
  width: 50%;
  padding-right: 22.5px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}

#addr .addr_item dl dt .photo {
  margin-bottom: 18px;
}

#addr .addr_item dl dt table {
  width: 100%;
  border-top: 1px solid #D7D7D7;
  border-spacing: 0;
  margin-bottom: 18px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt table {
    margin-bottom: 16px;
  }
}

#addr .addr_item dl dt table tr {
  border-bottom: 1px solid #D7D7D7;
  width: 100%;
}

#addr .addr_item dl dt table tr:nth-child(1) {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.166;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt table tr:nth-child(1) {
    font-size: 16px;
  }
}

#addr .addr_item dl dt table tr:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

#addr .addr_item dl dt table tr td {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  width: calc(11.4285% - 3.714px);
}

#addr .addr_item dl dt table tr td:nth-child(1) {
  width: 20%;
  padding-left: 13px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt table tr td:nth-child(1) {
    padding-left: 0;
  }
}

#addr .addr_item dl dt table tr td .box {
  position: relative;
  padding-bottom: 30px;
}

#addr .addr_item dl dt table tr td:last-child {
  padding-right: 13px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt table tr td:last-child {
    padding-right: 0;
  }
}

#addr .addr_item dl dt table tr td .small_txt {
  position: absolute;
  content: '';
  bottom: 0;
  width: 48px;
  left: calc(50% - 24px);
  white-space: nowrap;
}

#addr .addr_item dl dt table tr td .pm {
  color: #2E56AF;
  font-size: 15px;
  font-weight: bold;
  display: block;
  line-height: 100%;
  text-align: center;
  padding-bottom: 10px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt table tr td .pm {
    padding-bottom: 0;
  }
}

#addr .addr_item dl dt table tr td img {
  max-width: 16px;
  margin: auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt table tr td img {
    margin-bottom: 0;
  }
}

#addr .addr_item dl dt .list_txt {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.428;
  margin-bottom: 18px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt .list_txt {
    margin-bottom: 16px;
  }
}

#addr .addr_item dl dt .list_txt span {
  color: #2E56AF;
}

#addr .addr_item dl dt .list_txt .sp_f {
  display: none;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt .list_txt .sp_f {
    display: inline-block;
  }
}

#addr .addr_item dl dt iframe {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt iframe {
    height: 160px;
  }
}

#addr .addr_item dl dt p {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.444;
  margin-top: 18px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dt p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }
}

#addr .addr_item dl dd {
  width: 50%;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.444;
}

#addr .addr_item dl dd span {
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dd {
    padding-top: 16px;
    font-size: 16px;
    width: 100%;
    padding-left: 0;
  }
}

#addr .addr_item dl dd .photo {
  margin-bottom: 20px;
}

#addr .addr_item dl dd .name {
  font-size: 27px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  letter-spacing: 0.02em;
  color: #262525;
  line-height: 1.444;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dd .name {
    font-size: 24px;
  }
}

#addr .addr_item dl dd .name span {
  font-size: 18px;
  margin-right: 10px;
  color: #2E56AF;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dd .name span {
    font-size: 16px;
    margin-right: 8px;
  }
}

#addr .addr_item dl dd .tag {
  color: #174ABC;
  width: 117px;
  text-align: center;
  line-height: 27px;
  border: 1px solid #174ABC;
  letter-spacing: 0.02em;
  font-size: 18px;
  font-weight: 500;
  border-radius: 14px;
  margin-top: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dd .tag {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    width: 144px;
  }
}

#addr .addr_item dl dd .t144 {
  width: 144px;
}

#addr .addr_item dl dd p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.444;
}

@media screen and (max-width: 851px) {
  #addr .addr_item dl dd p {
    font-size: 16px;
    line-height: 1.5;
  }
}

#addr .addr_item dl dd p span {
  display: inline-block;
  width: 72px;
  color: #174ABC;
}

#footer {
  color: #ffffff;
  background: #2E56AF;
}

#footer .inner {
  max-width: 895px;
  padding-top: 27px;
  padding-bottom: 27px;
}

#footer .f_logo {
  display: block;
  max-width: 297px;
  margin: auto;
}

@media screen and (max-width: 851px) {
  #footer .f_logo {
    max-width: 296px;
  }
}

#footer .link {
  margin-top: 35px;
  display: flex;
  column-gap: 72px;
}

@media screen and (max-width: 851px) {
  #footer .link {
    max-width: 240px;
    margin: auto;
    display: block;
    margin-top: 32px;
  }
}

#footer .link li {
  width: calc(33.3333% - 48px);
  text-align: left;
}

@media screen and (max-width: 851px) {
  #footer .link li {
    width: 100%;
  }
}

#footer .link li a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.444;
}

@media screen and (max-width: 851px) {
  #footer .link li a {
    font-size: 16px;
    line-height: 1.5;
  }
}

#footer .sns {
  display: flex;
  column-gap: 18px;
  width: fit-content;
  margin: auto;
  margin-top: 18px;
}

@media screen and (max-width: 851px) {
  #footer .sns {
    column-gap: 24px;
    margin-top: 32px;
  }
}

#footer .sns li {
  width: 36px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 851px) {
  #footer .sns li {
    width: 32px;
  }
}

#footer .sns li a {
  display: block;
  display: flex;
  align-items: center;
}

#footer .copy {
  font-family: "Righteous", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: 25px;
  text-align: center;
}

@media screen and (max-width: 851px) {
  #footer .copy {
    font-size: 16px;
    margin-top: 30px;
  }
}

#lb {
  background: rgba(255, 255, 255, 0.9);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  margin-block: 0;
  margin-inline: 0;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: 0.3s ease-in-out;
  animation-delay: 2s;
}

#lb .tel_box {
  position: relative;
}

@media screen and (max-width: 851px) {
  #lb .tel_box {
    padding-top: 26px;
  }
}

#lb .tel_box #lb_btn {
  position: absolute;
  width: 34px;
  height: 34px;
  right: 14px;
  top: 14px;
  cursor: pointer;
}

@media screen and (max-width: 851px) {
  #lb .tel_box #lb_btn {
    width: 20px;
    height: 20px;
    right: 12px;
    top: 12px;
  }
}

#lb02 {
  background: rgba(255, 255, 255, 0.9);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  margin-block: 0;
  margin-inline: 0;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: 0.3s ease-in-out;
  animation-delay: 2s;
}

#lb02 .tel_box {
  position: relative;
}

@media screen and (max-width: 851px) {
  #lb02 .tel_box {
    padding-top: 26px;
  }
}

#lb02 .tel_box #lb_btn02 {
  position: absolute;
  width: 34px;
  height: 34px;
  right: 14px;
  top: 14px;
  cursor: pointer;
}

@media screen and (max-width: 851px) {
  #lb02 .tel_box #lb_btn02 {
    width: 20px;
    height: 20px;
    right: 12px;
    top: 12px;
  }
}

/*一瞬表示されるのを防ぐ*/
.show {
  display: flex !important;
  transition: 0.3s ease-in-out !important;
}

.hide {
  display: none !important;
  transition: 0.3s ease-in-out !important;
}