/*
	SCSS SETTING
*/
/*
	RESET CSS
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  letter-spacing: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}
q::before, q::after,
blockquote::before,
blockquote::after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
picture {
  display: block;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
      -moz-appearance: none;
          appearance: none;
}

/*
	DEFAULT CSS
*/
html {
  font-size: 10px;
}

body {
  background-color: #508CD6;
  color: #3c3c3c;
  font-family: "UD Shin Go Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.7307692308;
    letter-spacing: 0.05em;
  }
}

#main {
  width: 100%;
  height: auto;
  background-color: #508CD6;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  #main {
    margin-top: 0;
  }
}

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

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  width: 100%;
  transition: all .3s;
}
a:hover {
  opacity: 0.7;
}

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

svg {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  vertical-align: middle;
}

/*
	SETTING CSS
*/
@media screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}


/* ==========
*  data-js
========== */
[data-js-fadein] {
  opacity: 0;
  transform: translateY(20px);
}

[data-js-fadein=true] {
  opacity: 1;
  transform: translateY(0);
  transition: 1s;
}

[data-js-follow] {
  display: none;
  opacity: 0;
}

[data-js-follow=false] {
  -webkit-animation: followFalseAnimetion 0.4s forwards;
          animation: followFalseAnimetion 0.4s forwards;
}
@-webkit-keyframes followFalseAnimetion {
  0% {
    display: block;
    opacity: 1;
  }
  99.9% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes followFalseAnimetion {
  0% {
    display: block;
    opacity: 1;
  }
  99.9% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

[data-js-follow=true] {
  -webkit-animation: followTrueAnimetion 0.4s forwards;
          animation: followTrueAnimetion 0.4s forwards;
}
@-webkit-keyframes followTrueAnimetion {
  0% {
    display: none;
    opacity: 0;
  }
  0.01% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes followTrueAnimetion {
  0% {
    display: none;
    opacity: 0;
  }
  0.01% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}


/* ==========
*  header
========== */
#header.header {
  /* height: 90px; */
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 100000;
}
@media screen and (max-width: 767px) {
  #header.header {
    height: 68px;
    position: initial;
  }
}

.header__inner{
  /* max-width: 1260px; */
  width: 100%;
  /* margin-left: 0;
  margin-right: 0; */
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  justify-content: flex-end;
}

.header__btn-wrap{
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  width: 100%;
}

.header__btn{
  max-width: 230px;
  width: 100%;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__btn a{
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  padding: 9.21px 0;
  text-align: center;
  vertical-align: middle;
  transition: all ease 0.3s;
}

.header__btn.data{
  background-color: #E60039;
}
.header__btn.contact{
  background-color: #000000;
}

.header__btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("https://okamura.imgix.net/office/lp/office_iten/img/action-arrow.hov.svg");
  width: 5px;
  height: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.header__btn a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1080px) {
  .header__btn-wrap {
    flex-flow: column;
    gap: 5px;
    align-items: flex-end;
    max-width: 200px;
  }
  .header__btn a {
    font-size: 14px;
    padding: 4px 0;
  }
}



/* ==========
*  fv
========== */
.fv{
  background-image: url(../img/fv-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  /* max-width: 1400px; */
  width: 100%;
  position: relative;
  /* z-index: -2; */
}
@media screen and (max-width: 767px) {
  .fv{
    background-image: url(../img/fv-img_sp.png);
    background-position: bottom right;
    background-size: 95%;
    /* max-width: 500px; */
    padding-top: 142px;
  }
}

.fv__credit{
  position: absolute;
  bottom: 10px;
  right: 17px;
  color: #fff;
  font-family: "UD Shin Go Regular", sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .fv__credit{
    bottom: 5px;
    right: 5px;
  }
}

.fv__inner{
  /* padding-left: 150px; */
  width: fit-content;
  margin-left: auto;
  /* padding-right: 12%; */
  padding-right: 8%;
}
@media screen and (max-width: 767px) {
  .fv__inner{
    padding-right: 3%;
  }
}

.fv__container{
  background-color: #fff;
  border-radius: 0 30px 30px 0;
  width: 52%;
  padding: 24px 0 10px;
  position: relative;
  top: -40px;
}
@media screen and (max-width: 767px) {
  .fv__container{
    /* max-width: 358px; */
    max-width: initial;
    width: 95%;
    border-radius: 0 10px 10px 0;
    top: -182px;
    padding: 15px 0 10px;
  }
}

.fv__logo{
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__logo{
    max-width: 125px;
  }
}

.fv__logo img {
  transition: 0.3s opacity;
}
@media (hover: hover) {
  .fv__logo:hover img {
    opacity: 0.7;
  }
}

.fv__title{
  /* padding-top: 28px; */
  padding-top: calc(25 / 1500 * 100vw);
  color: #508CD6;
  /* font-size: 67px; */
  font-size: calc(65 / 1500 * 100vw);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-family: 'UD Shin Go DemiBold';
}
@media screen and (max-width: 767px) {
  .fv__title{
    padding-top: 14px;
    font-size: 38px;
    letter-spacing: -0.015em;
  }
}

.fv__text{
  /* margin-top: 8px; */
  margin-top: calc(3 / 1500 * 100vw);
}
@media screen and (max-width: 767px) {
  .fv__text{
    margin-top: 8px;
  }
}

.fv__text p{
  /* font-size: 24px; */
  font-size: calc(20 / 1500 * 100vw);
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #333333;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fv__text p{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.015em;
  }
}

.fv__list{
  /* margin-top: 22px; */
  margin-top: calc(14 / 1500 * 100vw);
  display: flex;
  column-gap: 12px;
}
@media screen and (max-width: 767px) {
  .fv__list{
    margin-top: 8px;
    column-gap: 6px;
  }
}

.fv__item{
  /* max-width: 162px; */
  max-width: calc(160 / 1500 * 100vw);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__item{
    max-width: 100px;
  }
}

.fv__note{
  display: flex;
  justify-content: flex-end;
  column-gap: 15px;
  /* margin-top: 31px; */
  margin-top: calc(15 / 1500 * 100vw);
  color: #808080;
}
@media screen and (max-width: 767px) {
  .fv__note {
    margin-top: 10px;
  }
}

.fv__note p{
  /* font-size: 11px; */
  font-size: calc(11 / 1500 * 100vw);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .fv__note p{
    font-size: 10px;
  }
}


/* ==========
*  action
========== */
.action{
  position: relative;
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  margin-top: 30px;
  /* border: 2px solid #3C6F9E; */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .action{
    margin-top: 52px;
    /* max-width: 340px; */
    max-width: initial;
    width: 90%;
    height: 140px;
    border-radius: 15px;
  }
}

.action__inner{
  max-width: 940px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
}
@media screen and (max-width: 767px) {
  .action__inner{
    top: -50px;
    padding-left: 0;
    padding-right: 0;
  }
}

.action__text-wrap{
  display: flex;
  column-gap: 28px;
}
@media screen and (max-width: 767px) {
  .action__text-wrap{
    flex-direction: column;
    align-items: center;
  }
}

.action__text-wrap img{
  max-width: 245px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .action__text-wrap img{
    max-width: 150px;
  }
}

.action__text-wrap p{
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  padding-top: 65px;
}
@media screen and (max-width: 1080px) {
  .action__text-wrap p{
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .action__text-wrap p{
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.05em;
    padding-top: 0;
  }
}

.action__text-wrap p span{
  color: #E60039;
}

.action__btn{
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  border-radius: 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .action__btn{
    max-width: 320px;
    margin-top: 7px;
  }
}

.action__btn a{
  background-color: #E60039;
  color: #fff;
  border-radius: 40px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  padding: 14.4px 0;
  position: relative;
  box-shadow: 0px 10px 0px #960028;
}
@media screen and (max-width: 767px) {
  .action__btn a{
    font-size: 17px;
    letter-spacing: -0.05em;
    padding: 6px 0;
    box-shadow: 0px 5px 0px #960028;
  }
}

.action__btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("https://okamura.imgix.net/office/lp/office_iten/img/action-arrow.hov.svg");
  background-repeat: no-repeat;
  width: 8px;
  height: 18px;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .action__btn a::before{
    width: 5px;
    height: 12px;
    right: 8px;
  }
}

.action-wrap{
  padding: 50px 0 130px;
  background-color: #EAEAE2;
}
@media screen and (max-width: 767px) {
  .action-wrap{
    padding: 20px 0 85px;
  }
}

.point__item.item-03 .action-wrap{
  padding: 20px 0 50px;
  background-color: #EAEAE2;
}
@media screen and (max-width: 767px) {
  .point__item.item-03 .action-wrap{
    padding: 15px 0 45px;
  }
}


.action-wrap .action::before{
  display: none;
}

.action__btn a:hover{
  box-shadow: unset;
  transform: translateY(9px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .action__btn a:hover{
    transform: translateY(4px);
  }
}


/* ==========
*  worry
========== */
.worry{
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .worry{
    padding: 32px 0 48px;
  }
}

.worry__inner{
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .worry__inner{
    padding-left: 15px;
    padding-right: 15px;
  }
}

.worry__title{
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .worry__title{
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.05em;
    align-items: flex-end;
  }
}

.worry__title::before{
  content: "";
  background-image: url(../img/title-line-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .worry__title::before{
    width: 28px;
    height: 48px;
  }
}

.worry__title::after{
  content: "";
  background-image: url(../img/title-line-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .worry__title::after{
    width: 28px;
    height: 48px;
  }
}

.worry__list{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  column-gap: 25px;
}
@media screen and (max-width: 767px) {
  .worry__list{
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 8px;
    row-gap: 12px;
  }
}

.worry__item{
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.worry__item-img{
  max-width: 200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .worry__item{
    max-width: 108px;
  }
  .worry__item-img{
    max-width: 100px;
  }
}

.worry__item:nth-child(2) .worry__item-img{
  margin-bottom: -8px;
}

.worry__item-text{
  display: flex;
  justify-content: center;
  column-gap: 8px;
  position: relative;
}

.worry__item-text img{
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .worry__item-text img{
    max-width: 108px;
  }
}

.worry__item-text p{
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
@media screen and (max-width: 767px) {
  .worry__item-text p{
    font-size: 12px;
    line-height: 1.2;
    top: 6px;
  }
}



/* ==========
*  point
========== */

.point__top{
  background-color: #F0F0ED;
  position: relative;
  padding: 77px 0 70px;
}
@media screen and (max-width: 767px) {
  .point__top{
    padding: 38px 0 68px;
  }
}

.point__top-bubble{
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__top-bubble{
    top: -16px;
  }
}

.point__top-bubble img{
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point__top-bubble img{
    max-width: 148px;
  }
}

.point__top-bubble p{
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
@media screen and (max-width: 767px) {
  .point__top-bubble p{
    font-size: 15px;
    top: 7px;
  }
}

.point__top-title{
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .point__top-title{
    font-size: 21px;
    line-height: 1.4;
  }
}

.point__top-title span{
  color: #508CD6;
}

.point__top-list{
  display: flex;
  justify-content: center;
  column-gap: 25px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .point__top-list{
    flex-direction: column;
    row-gap: 38px;
    align-items: center;
    margin-top: 40px;
  }
}

.point__top-item{
  background-color: #fff;
  border-radius: 20px;
  padding: 8px;
  max-width: 250px;
  width: 100%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__top-item{
    max-width: 290px;
    border-radius: 10px;
    padding: 5px;
  }
}

.point__top-inner{
  border: 2px solid #508CD6;
  border-radius: 20px;
  padding: 42px 0 20px;
}
@media screen and (max-width: 767px) {
  .point__top-inner{
    border-radius: 10px;
    padding: 32px 0 10px;
  }
}

.point__top-num{
  max-width: 80px;
  width: 100%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__top-num{
    max-width: 65px;
    top: -32px;
  }
}

.point__top-text p{
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .point__top-text p{
    letter-spacing: -0.05em;
  }
}

.point__top-text span{
  margin-top: 10px;
  font-size: 44px;
  line-height: 1.2;
  display: inline-block;
  font-family: 'UD Shin Go DemiBold';
}
@media screen and (max-width: 767px) {
  .point__top-text span{
    font-size: 32px;
    margin-top: 0;
  }
}

.point__top-bottom{
  margin-top: 36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__top-bottom{
    margin-top: 27px;
  }
}

.point__top-bottom p{
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 767px) {
  .point__top-bottom p{
    font-size: 19px;
  }
}

.point__top-bottom p span.first-part{
  display: block;
}

.point__top-bottom p span.second-part{
  font-size: 44px;
  line-height: 1.8;
  display: block;
}
@media screen and (max-width: 767px) {
  .point__top-bottom p span.second-part{
    font-size: 40px;
    line-height: 1.2;
    margin-top: 8px;
  }
}

.point__top-bottom p span.blue{
  color: #508CD6;
}


.point__list{
  background-color: #fff;
}

.point__item-top{
  background-color: #004C6B;
  padding: 65px 0 38px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .point__item-top{
    padding: 43px 0 18px;
  }
}

.point__item-num{
  max-width: 100px;
  width: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__item-num{
    max-width: 65px;
    top: -33px;
  }
}

.point__item-title{
  font-size: 30px;
  line-height: 1.2;
  font-family: "UD Shin Go Regular", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__item-title{
    font-size: 19px;
    letter-spacing: 0;
  }
}

.point__item-title span{
  display: block;
  font-size: 63px;
  font-family: 'UD Shin Go DemiBold', sans-serif;
}
@media screen and (max-width: 767px) {
  .point__item-title span{
    font-size: 43px;
  }
}

.point__item-text{
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__item-text{
    margin-top: 21px;
  }
}

.point__item-text p{
  font-size: 19px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .point__item-text p{
    font-size: 16px;
    letter-spacing: -0.05em;
  }
}

.point__item-text p.top{
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .point__item-text p.top{
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.025em;
    margin-bottom: 15px;
  }
}

.point__item-text p span{
  color: #508CD6;
}

.point__item.item-01 .point__item-img{
  margin-top: 42px;
  max-width: 963px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .point__item.item-01 .point__item-img{
    margin-top: 23px;
    max-width: 362px;
  }
}

.point__item.item-02 .point__item-img{
  margin-top: 42px;
  max-width: 841px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .point__item.item-02 .point__item-img{
    margin-top: 25px;
    max-width: 320px;
  }
}

.point__item.item-03 .point__item-img{
  margin-top: 49px;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .point__item.item-03 .point__item-img{
    margin-top: 15px;
    max-width: 320px;
  }
}

.point__item-img--bottom{
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__item-img--bottom{
    margin-top: 35px;
  }
  .point__item.item-02 .point__item-img--bottom{
    margin-top: 15px;
  }
}

.point__item.item-03 .point__item-img--bottom{
  margin-top: 30px;
}

.point__item-img--bottom p{
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .point__item-img--bottom p{
    font-size: 15px;
  }
}

.point__item-img--bottom p span{
  color: #508CD6;
}

.point__item-fade {
  position: relative;
  max-width: 850px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  aspect-ratio: 850/592;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .point__item-fade {
    margin-top: 12px;
    max-width: 340px;
    aspect-ratio: 340/330;
  }
}

.point__item-fade--img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.point__item-fade--img img {
  width: 100%;
  height: auto;
  display: block;
}

.point__item-fade--img.active {
  opacity: 1;
  z-index: 1;
}


.point__item-img--text{
  margin-top: 23px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__item-img--text{
    margin-top: 9px;
  }
}

.point__item.item-02 .point__item-img--text{
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .point__item.item-02 .point__item-img--text{
    margin-top: 38px;
  }
}

.point__item.item-03 .point__item-img--text{
  margin-top: 27px;
}

.point__item-img--text p{
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .point__item-img--text p{
    font-size: 21px;
  }
}

.point__item-img--text p span.small{
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .point__item-img--text p span.small{
    font-size: 17px;
  }
}

.point__item-img--arrow{
  position: relative;
  top: -12px;
  max-width: 335px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.point__item-example{
  margin-top: 34px;
  max-width: 850px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .point__item-example{
    margin-top: 15px;
    max-width: 340px;
  }
}

.point__item.item-03 .point__item-example{
  margin-top: 46px;
}

.point__example-title{
  max-width: 280px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point__example-title{
    max-width: 235px;
    margin-left: auto;
    margin-right: auto;
  }
}

.point__example-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 18px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .point__example-list{
    margin-top: 23px;
    gap: 16px;
  }
}

.point__example-item{
  border-radius: 10px;
  border: 1px solid #508CD6;
  padding: 23px 22px;
  max-width: 415px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .point__example-item{
    max-width: initial;
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .point__example-item{
    padding: 21px;
    width: 100%;
  }
}

.point__example-item.flex{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 30px;
  max-width: 850px;
}
@media screen and (max-width: 1080px) {
  .point__example-item.flex{
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .point__example-item.flex{
    display: block;
  }
}

.point__example-top{
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  column-gap: 6px;
  position: relative;
  top: -3px;
  left: -4px;
}
@media screen and (max-width: 767px) {
  .point__example-top{
    column-gap: 5px;
  }
}

.point__example-check{
  max-width: 37px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point__example-check{
    max-width: 28px;
  }
}

.point__example-text p{
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-top: 7px;
  font-family: "UD Shin Go Regular", sans-serif;
}
@media screen and (max-width: 767px) {
  .point__example-text p{
    font-size: 14px;
  }
}

.point__example-text span.blue{
  color: #508CD6;
  font-size: 20px;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 767px) {
  .point__example-text span.blue{
    font-size: 17px;
    line-height: 1.5;
  }
}

.point__example-img{
  max-width: 330px;
  width: 100%;
  margin-left: auto;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .point__example-img{
    max-width: 267px;
  }
}

.point__example-item.flex .point__example-img{
  max-width: 392px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point__example-item.flex .point__example-img{
    max-width: 265px;
    margin-top: 14px;
    margin-left: auto;
  }
}

.point__example-bottom{
  margin-top: 34px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__example-bottom{
    margin-top: 26px;
    text-align: left;
  }
}

.point__example-bottom p{
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .point__example-bottom p{
    font-size: 16px;
    letter-spacing: -0.05em;
  }
}


.point__swiper-area{
  margin-top: 120px;
  background-color: #508CD6;
  color: #fff;
  padding: 75px 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__swiper-area{
      margin-top: 42px;
      padding: 45px 0 70px;
  }
}

.point__swiper-top{
  max-width: 350px;
  width: 100%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__swiper-top{
    max-width: 212px;
    top: -12px;
  }
}

.point__swiper-wrapper:nth-child(n+2){
  margin-top: 100px;
}

.point__swiper-title{
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .point__swiper-title{
    font-size: 17px;
    letter-spacing: -0.025em;
    column-gap: 10px;
    align-items: flex-end;
  }
}

.point__swiper-title::before{
  content: "";
  background-image: url(../img/title-line-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .point__swiper-title::before{
      width: 28px;
      height: 48px;
  }
}

.point__swiper-title::after{
  content: "";
  background-image: url(../img/title-line-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .point__swiper-title::after{
      width: 28px;
      height: 48px;
  }
}

.point__swiper{
  margin-top: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__swiper{
    margin-top: 20px;
  }
}

.point__swiper .swiper-wrapper{
  align-items: center;
}

.point__swiper .swiper-slide{
  max-width: 400px;
  width: 100%;
  /* transform: scale(.8); */
  transition: transform 1s, width 1s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .point__swiper .swiper-slide{
    max-width: 280px;
  }
}

/* .point__swiper .swiper-slide-active {
  transform: scale(1);
  z-index: 2;
} */

.point__swiper.point02__swiper-top .swiper-slide img{
  width: 100%;
  aspect-ratio: 400/195;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .point__swiper.point02__swiper-top .swiper-slide img{
    aspect-ratio: 280/137;
  }
}
.point__swiper.point02__swiper-bottom .swiper-slide img{
  width: 100%;
  aspect-ratio: 400/254;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .point__swiper.point02__swiper-bottom .swiper-slide img{
    aspect-ratio: 280/178;
  }
}

.point__swiper .swiper-slide figcaption{
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .point__swiper .swiper-slide figcaption{
    font-size: 14px;
  }
}

.point__swiper .swiper-slide figcaption{
  opacity: 0;
}

.point__swiper .swiper-slide.swiper-slide-active figcaption{
  opacity: 1;
}

.point__swiper .swiper-pagination {
  bottom: -35px;
}

.point__swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

.point__swiper .swiper-pagination .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.point__swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 5px;
  width: 10px;
  height: 10px;
}

.point__gallery{
  margin-top: 120px;
  background-color: #508CD6;
  color: #fff;
  padding: 70px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__gallery{
    margin-top: 42px;
    padding: 45px 0 32px;
  }
}

.point__gallery-top{
  max-width: 350px;
  width: 100%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__gallery-top{
    max-width: 212px;
    top: -12px;
  }
}

.point__gallery-title{
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .point__gallery-title{
    font-size: 17px;
    letter-spacing: -0.025em;
    column-gap: 10px;
    align-items: flex-end;
  }
}

.point__gallery-title::before{
  content: "";
  background-image: url(../img/title-line-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .point__gallery-title::before{
    width: 28px;
    height: 48px;
  }
}

.point__gallery-title::after{
  content: "";
  background-image: url(../img/title-line-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .point__gallery-title::after{
    width: 28px;
    height: 48px;
  }
}

.scroll-gallery {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.point__gallery-wrap{
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .point__gallery-wrap{
    margin-top: 15px;
  }
}

.point__gallery-left{
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .point__gallery-left{
    margin-top: 3px;
  }
}

.scroll-track {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}

.point__gallery-left .scroll-track {
  animation-name: scroll-left;
}

.point__gallery-right .scroll-track {
  animation-name: scroll-right;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.scroll-track img {
  max-width: 288px;
  width: 100%;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .scroll-track img {
    max-width: 186px;
  }
}

.point__support{
  margin-top: 120px;
  background-color: #508CD6;
  color: #fff;
  padding: 75px 0 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__support{
    margin-top: 42px;
    padding: 45px 0 70px;
  }
}

.point__support-top{
  max-width: 350px;
  width: 100%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__support-top{
    max-width: 212px;
    top: -12px;
  }
}

.point__support-title{
  text-align: center;
  font-size: 22px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .point__support-title{
    font-size: 17px;
    letter-spacing: -0.025em;
    align-items: flex-end;
  }
}

.point__support-title::before{
  content: "";
  background-image: url(../img/title-line-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 40px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .point__support-title::before{
    width: 28px;
    height: 48px;
  }
}

.point__support-title::after{
  content: "";
  background-image: url(../img/title-line-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 40px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .point__support-title::after{
    width: 28px;
    height: 48px;
  }
}

.point__support-list{
  margin-top: 34px;
  display: flex;
  justify-content: center;
  column-gap: 35px;
}
@media screen and (max-width: 767px) {
  .point__support-list{
    margin-top: 24px;
    flex-direction: column;
    row-gap: 32px;
    align-items: center;
  }
}

.point__support-item{
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point__support-item{
    max-width: 340px;
  }
}

.point__support-wrapper{
  background-color: #fff;
  border-radius: 10px;
  padding-top: 15px;
  text-align: center;
}

.point__support-caption{
  color: #508CD6;
  font-size: 14px;
  line-height: 1.2;
  font-family: 'UD Shin Go DemiBold';
  letter-spacing: -0.025em;
}
@media screen and (max-width: 767px) {
  .point__support-caption{
    font-size: 18px;
  }
}

.point__support-img{
  margin-top: 12px;
}

.point__support-text{
  margin-top: 17px;
}

.point__support-text p{
  font-size: 12px;
  line-height: 1.6;
  font-family: "UD Shin Go Regular", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .point__support-text p{
    font-size: 14px;
    line-height: 1.5;
  }
}


/* ==========
*  purpose
========== */
.purpose{
  padding-top: 90px;
  padding-bottom: 100px;
  background-color: #004C6B;
}
@media screen and (max-width: 767px) {
  .purpose{
    padding-top: 26px;
    padding-bottom: 50px;
  }
}

/* .purpose__inner{
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
} */

.purpose__title{
  text-align: center;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .purpose__title{
    font-size: 17px;
    letter-spacing: -0.025em;
    column-gap: 0;
    align-items: flex-end;
  }
}

.purpose__title::before{
  content: "";
  background-image: url(../img/title-line-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .purpose__title::before{
    width: 28px;
    height: 48px;
  }
}

.purpose__title::after{
  content: "";
  background-image: url(../img/title-line-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 50px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .purpose__title::after{
    width: 28px;
    height: 48px;
  }
}

.purpose__swiper{
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .purpose__swiper{
    margin-top: 20px;
    margin-left: 18px;
    margin-right: 18px;
  }
}

.purpose__swiper .swiper-slide{
  max-width: 1200px;
  width: 100%;
}

.purpose-swiper__container{
  background-color: #fff;
  border-radius: 30px;
  padding: 45px;
  min-height: 780px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__container{
    border-radius: 10px;
    padding: 22px 18px 25px;
    min-height: 785px;
    max-width: 340px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.purpose-swiper__title{
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__title{
    font-size: 19px;
    letter-spacing: -0.05em;
  }
}

.purpose-swiper__title span{
  margin-left: 23px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__title span{
    margin-left: 0;
    display: block;
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: -0.05em;
    line-height: 1.5;
  }
}

.purpose-swiper__wrap{
  margin-top: 18px;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__wrap{
    margin-top: 15px;
  }
}

.purpose-swiper__img-wrap{
  position: relative;
}

.purpose-swiper__img{
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__img{
    max-width: 320px;
    padding-top: 57px;
  }
}

.purpose-swiper__img-text{
  background-color: #508CD6;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  position: absolute;
  top: 15px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__img-text{
    top: 0;
    padding: 10px 12px;
    width: 95%;
  }
}

.purpose-swiper__img-text p{
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__img-text p{
    font-size: 15px;
    letter-spacing: -0.05em;
    line-height: 1.35;
  }
}

.purpose-swiper__text-top{
  color: #004C6B;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text-top{
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }
}

.purpose-swiper__text-top span{
  background-color: #004C6B;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
  padding: 8.5px 15px;
  border-radius: 6px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text-top span{
    font-size: 15px;
    padding: 3px 5px;
  }
}

.purpose-swiper__text{
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text{
    margin-top: 5px;
  }
}

.purpose-swiper__text p{
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text p{
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.05em;
    display: inline-flex;
  }
}

.purpose-swiper__text p::before{
  content: "●";
  display: inline-block;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text p::before{
    font-size: 14px;
  }
}

.purpose-swiper__text-bottom{
  margin-top: 25px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text-bottom{
    position: initial;
  }
}

.purpose-swiper__text-bottom p{
  font-size: 12px;
  color: #808080;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__text-bottom p{
    font-size: 10px;
  }
}

.purpose-swiper .swiper-pagination {
  bottom: -48px;
}
@media screen and (max-width: 767px) {
  .purpose-swiper .swiper-pagination {
    bottom: -36px;
  }
}

.purpose-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

.purpose-swiper .swiper-pagination .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.purpose-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 7px;
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .purpose-swiper .swiper-pagination .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .purpose-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 4px;
    width: 10px;
    height: 10px;
  }
}

.purpose-swiper__button-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 1250px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__button-wrap{
    max-width: 350px;
  }
}

.purpose-swiper__button-wrap .swiper-button-prev{
  left: 0;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__button-wrap .swiper-button-prev{
    left: -14px;
  }
}

.purpose-swiper__button-wrap .swiper-button-next{
  right: 0;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__button-wrap .swiper-button-next{
    right: -14px;
  }
}

.purpose-swiper__button-wrap .swiper-button-prev,
.purpose-swiper__button-wrap .swiper-button-next {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #004C6B;
    transition: all .3s;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__button-wrap .swiper-button-prev,
  .purpose-swiper__button-wrap .swiper-button-next {
    width: 28px;
    height: 28px;
    border: 2px solid #004C6B;
  }
}

.purpose-swiper__button-wrap .swiper-button-prev::before,
.purpose-swiper__button-wrap .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border-top: 3px solid #004C6B;
    border-right: 3px solid #004C6B;
}
@media screen and (max-width: 767px) {
  .purpose-swiper__button-wrap .swiper-button-prev::before,
  .purpose-swiper__button-wrap .swiper-button-next::before{
    width: 8px;
    height: 8px;
    border-top: 2px solid #004C6B;
    border-right: 2px solid #004C6B;
  }
}

.purpose-swiper__button-wrap .swiper-button-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.purpose-swiper__button-wrap .swiper-button-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.purpose-swiper__button-wrap .swiper-button-prev::after,
.purpose-swiper__button-wrap .swiper-button-next::after{
  display: none;
}

.purpose-swiper__button-wrap .swiper-button-prev:hover,
.purpose-swiper__button-wrap .swiper-button-next:hover{
  transform: translateY(5px);
}


/* ==========
*  reservation
========== */
.reservation{
  padding: 60px 0;
  background-color: #EAEAE2;
}
@media screen and (max-width: 767px) {
  .reservation{
    padding: 20px 0;
  }
}

.reservation__inner{
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .reservation__inner{
    max-width: 500px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.reservation__wrapper{
  margin-top: 32px;
  background-color: #fff;
  border-radius: 30px;
  padding: 42px 100px 52px;
}
@media screen and (max-width: 767px) {
  .reservation__wrapper{
    padding: 18px 0;
    border-radius: 10px;
    margin-top: 0;
  }
}

.reservation__title{
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reservation__title{
    font-size: 15px;
    line-height: 1.75;
  }
}

.reservation__img-area{
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  column-gap: 2px;
}
@media screen and (max-width: 767px) {
  .reservation__img-area{
    flex-wrap: wrap;
    row-gap: 12px;
    justify-content: center;
    margin-top: 11px;
    margin-left: 18px;
    margin-right: 18px;
  }
}

.reservation__img{
  max-width: 247px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reservation__img{
    max-width: 150px;
  }
}

.reservation__img figcaption{
  font-size: 12px;
  line-height: 1.16;
  letter-spacing: 0;
  font-family: "UD Shin Go Regular", sans-serif;
  padding-top: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 1350px) {
  .reservation__img figcaption{
    font-size: 11px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .reservation__img figcaption{
    font-size: 8px;
    padding-top: 6px;
    padding-left: 6px;
    letter-spacing: -0.05em;
  }
}

.reservation__btn{
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  background-color: #fff;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reservation__btn{
    max-width: 320px;
    margin-top: 15px;
  }
}

.reservation__btn a{
  background-color: #004C6B;
  color: #fff;
  border-radius: 40px;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  padding: 14.4px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0px 10px 0px #20384A;
}
@media screen and (max-width: 767px) {
  .reservation__btn a{
    font-size: 17px;
    letter-spacing: -0.05em;
    padding: 6px 0;
    box-shadow: 0px 5px 0px #20384A;
  }
}

.reservation__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("https://okamura.imgix.net/office/lp/office_iten/img/action-arrow.hov.svg");
  background-repeat: no-repeat;
  width: 8px;
  height: 18px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .reservation__btn::before{
    width: 5px;
    height: 12px;
    right: 8px;
  }
}

.reservation__btn a:hover{
  opacity: 1;
  box-shadow: unset;
  transform: translateY(9px);
}

.reservation__btn:hover::before{
  opacity: 1;
  box-shadow: unset;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .reservation__btn:hover::before{
    transform: translateY(3px);
  }
}


/* ==========
*  cta
========== */
.cta{
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cta__btn-wrap{
  display: flex;
  justify-content: center;
  column-gap: 5px;
  max-width: 375px;
  width: 100%;
}

.cta__btn{
  max-width: 180px;
  width: 100%;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta__btn a{
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  padding: 8.105px 0 10.105px 0;
  text-align: center;
  vertical-align: middle;
  transition: all ease 0.3s;
}

.cta__btn.data{
  background-color: #E60039;
}
.cta__btn.contact{
  background-color: #000000;
}

.cta__btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("https://okamura.imgix.net/office/lp/office_iten/img/action-arrow.hov.svg");
  width: 5px;
  height: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.cta__btn a:hover {
  opacity: 0.7;
}


/* ==========
*  footer
========== */
#footer {
  background-color: #1a1919;
  position: relative;
  z-index: 999;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1080px) {
  #footer {
    z-index: 9;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    background-color: #e5e8e9;
    z-index: 9;
  }
}
#footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-left: 8%;
  padding-right: 8%;
}
@media screen and (max-width: 767px) {
  #footer .footer {
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
#footer .footer .footer-company {
  display: block;
  line-height: 1;
}
#footer .footer .footer-company .footer-company_logo {
  display: inline-block;
  width: 180px;
  margin-right: 20px;
  line-height: 1;
  transition: 0.3s opacity;
}
@media (hover: hover) {
  #footer .footer .footer-company .footer-company_logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-company {
    order: 2;
    padding: 24px 18px 30px;
  }
  #footer .footer .footer-company .footer-company_name {
    font-size: 20px;
    font-weight: 700;
  }
  #footer .footer .footer-company .footer-company_link {
    margin-top: 25px;
  }
  #footer .footer .footer-company .footer-company_link > li {
    display: block;
  }
  #footer .footer .footer-company .footer-company_link > li + li {
    margin-top: 15px;
  }
  #footer .footer .footer-company .footer-company_link > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #676f82;
    font-size: 14px;
  }
}
#footer .footer .footer-copyright {
  flex: 1;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  color: #868187;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-copyright {
    order: 4;
    display: block;
    width: calc(100% - 36px);
    padding: 20px 0;
    border-top: 1px solid #d4d6d7;
    font-size: 10px;
    text-align: left;
  }
}
#footer .footer .footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-sns {
    order: 1;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
    padding: 24px 18px 30px;
    background-color: #1a1919;
  }
  #footer .footer .footer-sns > dt {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
  }
}
#footer .footer .footer-sns > dd {
  display: inline-block;
  width: 27px;
  line-height: 1;
}
#footer .footer .footer-sns > dd .footer-sns_icon {
  display: inline-block;
  background-color: #fff;
}
#footer .footer .footer-sns > dd .footer-sns_icon img {
  transition: 0.3s opacity;
}
@media (hover: hover) {
  #footer .footer .footer-sns > dd:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-sns > dd {
    width: calc(50% - 10px);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #908c89;
  }
  #footer .footer .footer-sns > dd > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #footer .footer .footer-sns > dd > a .footer-sns_icon {
    display: inline-block;
    width: 34px;
  }
  #footer .footer .footer-sns > dd > a .footer-sns_text {
    display: inline-block;
    margin-left: 30px;
    color: #908c89;
    font-size: 12px;
    line-height: 1.25;
  }
}
#footer .footer .footer-sns > dd + dd {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-sns > dd + dd {
    margin-left: 0;
  }
}
#footer .footer .footer-top {
  display: inline-block;
  width: 90px;
  margin-left: 60px;
  padding-right: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: 0.3s opacity;
}
@media (hover: hover) {
  #footer .footer .footer-top:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-top {
    width: 60px;
    height: 50px;
    background-color: #4e4f57;
    color: #4e4f57;
    position: fixed;
    right: 18px;
    bottom: 91px;
    z-index: 99;
  }
}
#footer .footer .footer-top::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  right: 2px;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #footer .footer .footer-top::after {
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
  }
}