@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow: auto;
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow: hidden;
  font-size: 18px;
  font-size: 1.8rem;
  color: #313232;
  background-color: #fefdf3;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.75;
  width: 100%;
}

a {
  color: #313232;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #313232;
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/******** Grid System width Flex ********/
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-dir-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/******** margin ********/
.m-auto {
  margin: auto;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/******** form input ********/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  margin: 2px;
  padding: 15px;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: #313232;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 15px;
  resize: vertical;
  width: 100%;
}

textarea:focus {
  outline: none;
  border-color: #313232;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #c5c5c5;
}

/*////////////////////////

EFFECTS

////////////////////////*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*////////////////////////

 fonts

////////////////////////*/
@font-face {
  font-family: "AlteHaasGroteskBold";
  src: url("../fonts/AlteHaasGroteskBold.eot?") format("eot"),
    url("../fonts/AlteHaasGroteskBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlteHaasGroteskRegular";
  src: url("../fonts/AlteHaasGroteskRegular.eot?") format("eot"),
    url("../fonts/AlteHaasGroteskRegular.woff") format("woff");
  font-display: swap;
}

.alte--reg {
  font-family: "AlteHaasGroteskRegular";
}

.alte--bold {
  font-family: "AlteHaasGroteskBold";
}

/*////////////////////////

 common parts

////////////////////////*/
.main {
  margin-top: 94px;
}

[class*="container_"] {
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_l {
  max-width: 1500px;
}

.container_m {
  max-width: 1350px;
}

.container_s {
  max-width: 1190px;
}

.container_xs {
  max-width: 1050px;
}

.container_xxs {
  max-width: 1010px;
}

.pc,
.block {
  display: block;
}

.sp,
.sp-550 {
  display: none;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.wd-100 {
  width: 100%;
}

.f-green {
  color: #006639;
}

.l-hieght-130 {
  line-height: 1.3;
}

.l-height-200 {
  line-height: 2;
}

.f-12 {
  font-size: 1.2rem;
}

.f-14 {
  font-size: 1.4rem;
}

.f-18 {
  font-size: 1.8rem;
}

.f-22 {
  font-size: 2.2rem !important;
}

.relative {
  position: relative;
}

.inline-block {
  display: inline-block;
}

.underline {
  text-decoration: underline;
}

[class*="circle__arrow--"]::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #313232;
  position: relative;
  top: 3px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 100px;
}

[class*="circle__arrow--"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 6.5px;
  margin: auto;
  width: 4px;
  height: 4px;
}

.circle__arrow--down::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

.circle__arrow--right::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.btn--round {
  background-color: #238b81;
  color: #fff;
  font-size: 1.8rem;
  display: block;
  border-radius: 70px;
  font-weight: bold;
  padding: 20px;
  position: relative;
  line-height: 1.3;
  text-align: center;
}

.btn--round.circle__arrow--right::before {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #0d59b6;
}

.btn--round.circle__arrow--right::after {
  right: 27px;
  left: auto;
  bottom: -1px;
}

.icn-window {
  display: inline-block;
  position: relative;
}

.icn-window::after {
  content: url(../img/common/icn_window.svg);
  display: inline-block;
  position: absolute;
  right: -10px;
  top: -12px;
}

.hdg--yugo36 {
  line-height: 1.4;
  font-size: 3.6rem;
  text-align: center;
  color: #006639;
}

.hdg--board {
  color: #006639;
  text-align: center;
  font-size: 4.4rem;
  max-width: 800px;
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border: 3px solid #006639;
  border-radius: 25px;
  position: relative;
  margin: 70px auto 50px;
}

.hdg--board::before {
  width: 204px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -55px;
  z-index: -1;
  content: url(../img/common/hdg_board_parts.svg);
}

.hdg--board::after {
  width: 101%;
  height: 107%;
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: -1;
  background: url(../img/common/bkg_dots.png) repeat top left;
  border-radius: 25px;
}

.hdg--board.bkg-white::after {
  background: url(../img/common/bkg_dots_white.png) repeat top left;
}

.hdg--dashed {
  text-align: center;
  color: #006639;
  font-size: 2.4rem;
}

.hdg--dashed_inner {
  display: inline-block;
  padding: 10px 50px;
  border-radius: 70px;
  background-color: #fff;
  border: 1px dashed #30835e;
}

.dotline__list_hdg,
.dotline__list_detail {
  padding: 25px 10px;
  font-weight: bold;
  color: #006639;
}

.dotline__list_hdg:not(:last-of-type),
.dotline__list_detail:not(:last-of-type) {
  border-bottom: 2px dotted #dedfd7;
}

.dotline__list_hdg {
  width: 23%;
  font-size: 2rem;
}

.dotline__list_detail {
  width: calc(100% - 23%);
  font-size: 1.8rem;
}

.label__item {
  position: relative;
  padding-left: 175px;
}

.label__item_name {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #006639;
  color: #fff;
  padding: 0 15px;
  display: block;
  border-radius: 70px;
}

.js-accordion-ttl {
  cursor: pointer;
}

.js-accordion-detail {
  display: none;
}

.location__item {
  border: 1px solid #238b81;
  border-radius: 10px;
  font-weight: bold;
  overflow: hidden;
  margin-bottom: 10px;
}

.location__item_hdg {
  line-height: 1.3;
  color: #fff;
  font-size: 2rem;
  background-color: #238b81;
}

.location__item_hdg_inner {
  position: relative;
  padding: 0 0 0 65px;
}

.location__item_type {
  display: inline-block;
  background-color: #fff;
  border-radius: 100px;
  color: #238b81;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
}

.location__item_detail {
  background-color: #fff;
  padding: 15px 30px;
  color: #238b81;
  font-size: 1.8rem;
}

.location__item .btn--round {
  font-size: 1.6rem;
  padding: 15px 20px;
  display: inline-block;
}

.location__item .btn--round .fas {
  font-size: 1.1rem;
  position: relative;
  top: -3px;
}

.location__item .btn--round:hover {
  color: #fff;
}

.location__item_inner_box {
  padding: 20px;
  background-color: #f0f4f2;
  border-radius: 10px;
}

.location__item .check__list_item_inner {
  background-color: #f0f4f2 !important;
  display: block;
  max-width: 410px;
}

.check__list_item_inner {
  display: inline-block;
  border-radius: 50px;
  background-color: #f0f4f2;
  font-size: 1.4rem;
  padding: 7px 25px 7px 40px;
  position: relative;
}

.check__list_item_inner .fa-check-circle {
  position: absolute;
  left: 25px;
  top: 13px;
}

.bring__block {
  max-width: 410px;
  width: 100%;
}

.bring__block:not(:last-of-type) {
  margin-right: 30px;
}

.bring__block_tab_inner {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #006639;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 5px 25px;
  position: relative;
  top: 1px;
  z-index: 2;
}

.bring__block_tab_bkg {
  border-radius: 10px 10px 0 0;
  background-color: #006639;
  display: inline-block;
  width: 129px;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 5px;
}

.bring__block_hdg {
  text-align: center;
  border-bottom: 2px dotted #006639;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.bring__block_detail {
  background-color: #fff;
  border: 1px solid #006639;
  box-shadow: 5px 5px 0 #006639;
  border-radius: 0 10px 10px 10px;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.bring__block .check__list_item_inner {
  display: block;
  margin: 0;
  background-color: #edf3eb;
  font-size: 1.8rem;
}

@media screen and (min-width: 981px) {
  .location__item_hdg {
    width: 320px;
  }
  .location__item_hdg_inner {
    top: 50%;
    transform: translateY(-50%);
  }
  .location__item_detail {
    width: calc(100% - 320px);
  }
}

@media screen and (max-width: 980px) {
  .location__item,
  .bring__flexbox {
    display: block;
  }
  .location__item_hdg_inner {
    padding: 25px 15px 25px 65px;
  }
  .bring__block {
    margin-right: auto !important;
    margin: auto;
  }
  .bring__block:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}

@media screen and (min-width: 551px) {
  .swicth-centered-txt {
    text-align: center;
  }
}

@media screen and (max-width: 550px) {
  .pc-550 {
    display: none;
  }
  .sp-550,
  .dotline__list {
    display: block;
  }
  .dotline__list_hdg,
  .dotline__list_detail {
    width: 100%;
  }
  .dotline__list_hdg {
    border-bottom: none !important;
    padding-bottom: 0;
  }
  .dotline__list_detail {
    padding-top: 5px;
  }
  .hdg--yugo36 {
    font-size: 2.8rem;
  }
  .hdg--board {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .hdg--dashed_inner {
    padding: 15px 20px;
    line-height: 1.2;
    display: block;
  }
  .location__item_hdg {
    font-size: 1.8rem;
  }
  .location__item_hdg_inner {
    padding: 15px 15px 15px 45px;
  }
  .location__item_detail {
    padding: 15px 20px;
  }
  .location__item_type {
    width: 30px;
    height: 30px;
    line-height: 30px;
    left: 10px;
  }
}

@media screen and (max-width: 450px) {
  .label__item {
    padding: 35px 0 0;
  }
}

/*////////////////////////

 header

////////////////////////*/
/******* toggle button *******/
header .toggle {
  display: none;
}

header .toggle[aria-expanded="true"] .toggle__bar {
  background-color: transparent;
}

header .toggle[aria-expanded="true"] .toggle__bar::before {
  -webkit-transform: translateY(10px) rotate(135deg);
  -ms-transform: translateY(10px) rotate(135deg);
  transform: translateY(10px) rotate(135deg);
}

header .toggle[aria-expanded="true"] .toggle__bar::after {
  -webkit-transform: translateY(-10px) rotate(-135deg);
  -ms-transform: translateY(-10px) rotate(-135deg);
  transform: translateY(-10px) rotate(-135deg);
  width: 35px;
}

header .toggle[aria-expanded="true"] .toggle__title:before {
  content: "とじる";
}

/******* Hamburger menu *******/
header .collapse {
  display: none;
}

header .collapse.in {
  display: block;
}

header .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

header .gnav {
  line-height: 1.6;
  margin: 0;
}

/********* header common **********/
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #e7e4de;
}

header,
header .logo {
  transition: 0.5s;
}

header.fixed {
  padding: 5px 0;
}

header .gnav__item a {
  font-size: 1.6rem;
  display: inline-block;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
}

header .gnav__item_inner {
  display: inline-block;
  position: relative;
}

header .current .gnav__item_inner::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #313232;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

@media screen and (min-width: 981px) {
  header.fixed .logo {
    width: 20%;
  }
  header .gnav {
    display: block !important;
    height: inherit !important;
    width: 100%;
    max-width: 953px;
  }
  header .gnav__item_inner::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #313232;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
  }
  header .gnav__item a:hover .gnav__item_inner::after {
    width: 100%;
  }
}

@media screen and (max-width: 980px) and (min-width: 551px) {
  header.fixed .logo {
    width: 50%;
    max-width: 345px;
  }
}

@media screen and (max-width: 980px) {
  header.fixed .gnav {
    top: 74px;
  }
  header.fixed .toggle {
    top: 10px;
  }
  header .gnav {
    max-width: 1000px;
    position: absolute;
    top: 94px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 6;
    transition: 0.5s;
  }
  header .gnav__list {
    display: block;
    margin: auto;
    padding: 60px 0 0;
    position: relative;
    max-width: 200px;
    width: 100%;
  }
  header .gnav__item a {
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
  }
  header .in .gnav__item a {
    opacity: 1;
    visibility: visible;
    transition: all 1.5s ease;
  }
  header .in .gnav__item:nth-child(2) a {
    transition-delay: 0.2s;
  }
  header .in .gnav__item:nth-child(3) a {
    transition-delay: 0.4s;
  }
  header .in .gnav__item:nth-child(4) a {
    transition-delay: 0.6s;
  }
  header .in .gnav__item:nth-child(5) a {
    transition-delay: 0.8s;
  }
  header .in .gnav__item:nth-child(6) a {
    transition-delay: 1s;
  }
  header .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    text-align: center;
    position: absolute;
    padding: 13px;
    right: 10px;
    top: 15px;
    z-index: 7;
  }
  header .toggle__bar {
    position: relative;
    margin: 8px 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  header .toggle__bar,
  header .toggle__bar::before,
  header .toggle__bar::after {
    display: block;
    width: 35px;
    height: 3px;
    background-color: #231815;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  header .toggle__bar::before,
  header .toggle__bar::after {
    position: absolute;
    content: "";
  }
  header .toggle__bar::before {
    top: -10px;
  }
  header .toggle__bar::after {
    top: 10px;
  }
  header .toggle__title {
    font-size: 1.3rem;
    display: block;
    padding-top: 7px;
    white-space: nowrap;
  }
  header .toggle__title:before {
    content: "メニュー";
  }
}

@media screen and (max-width: 550px) {
  header .logo {
    width: 80%;
  }
  header .toggle {
    right: 0;
  }
}

/*////////////////////////

footer

////////////////////////*/
footer {
  margin: 80px 0 0;
  background: #313232;
  color: #fff;
}

footer a,
footer a:hover {
  color: #fff;
}

footer .btn--round {
  background-color: #fff;
  color: #0c59b6;
  max-width: 340px;
  width: 100%;
  margin: auto;
}

footer .btn--round:hover {
  background-color: #0e4ea3;
  color: #fff;
}

.ft__link_block {
  padding: 40px 0 0;
  background-color: #0d59b6;
  background-image: url(../img/common/ft_dots_bkg_left.svg),
    url(../img/common/ft_dots_bkg_right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
}

.ft__link_block_inner {
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: auto;
  background-image: url(../img/common/deco_man.png),
    url(../img/common/deco_woman.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
  padding-bottom: 40px;
}

.ft__bottom_block {
  padding: 60px 15px;
  position: relative;
}

#pagetop {
  width: 80px;
  height: 80px;
  line-height: 70px;
  text-align: center;
  background: #fff;
  border: 4px solid #313232;
  border-radius: 100px;
  position: absolute;
  top: -40px;
  right: 15px;
}

@media screen and (max-width: 980px) {
  .ft__link_block {
    background-size: auto 100%, auto 100%;
    background-position: -15vw center, 125% center;
  }
}

@media screen and (max-width: 650px) {
  footer .btn--round {
    width: 70%;
    padding: 20px 25px;
  }
  .ft__link_block {
    background-position: -55vw center, 75vw center;
  }
}

@media screen and (max-width: 550px) {
  footer {
    margin: 40px 0 0;
  }
  footer .btn--round.circle__arrow--right::before {
    right: 10px;
  }
  footer .btn--round.circle__arrow--right::after {
    right: 17px;
  }
  .ft__link_block_inner {
    background-size: 20% auto, 18% auto;
  }
  .ft__bottom_block {
    display: block;
    padding-bottom: 30px;
  }
  .ft__logo {
    margin: 0 0 30px;
  }
  #pagetop {
    width: 60px;
    height: 60px;
    line-height: 45px;
    top: -30px;
  }
}

@media screen and (max-width: 450px) {
  .ft__link_block {
    background-size: auto 100%;
    background-position: center;
  }
}

@media screen and (max-width: 390px) {
  footer .btn--round {
    font-size: 1.6rem;
  }
}

/*////////////////////////

toppage

////////////////////////*/
.top-main {
  padding: 60px 0 0;
  background-image: url(../img/top/main_shape_bkg_left.svg),
    url(../img//top/main_shape_bkg_right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right -50px;
}

.main__block {
  padding: 0 15px 65px;
  max-width: 1148px;
  width: 100%;
  margin: auto;
  background: url(../img/top/main_deco_human.png) no-repeat;
  background-size: 92% auto;
  background-position: center 100%;
  animation: bounce 1s ease 0s 1 normal;
}

@keyframes bounce {
  0% {
    background-position: center 105%;
  }
  70% {
    background-position: center 98%;
  }
  100% {
    background-position: center 100%;
  }
}

.about__block {
  background-color: #fff;
  border: 3px solid #006639;
  border-radius: 15px;
  margin-top: -10px;
  color: #006639;
  font-weight: bold;
  padding-bottom: 40px;
}

.about__hdg {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 20px;
  background-color: #006639;
  text-align: center;
  position: relative;
  top: -13px;
  padding: 45px 15px 30px;
}

.about__hdg img {
  margin-right: -30px;
}

.about__hdg::before {
  display: inline-block;
  content: url(../img/top/about_hdg_bkg_triangle.svg);
  position: absolute;
  left: -10px;
  top: -14px;
}

.about__hdg::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  background: url(../img/top/about_hdg_bkg_wave.svg) repeat-x left bottom;
}

.about__list_item {
  padding: 40px 0;
}

.about__list_item:not(:last-child) {
  border-bottom: 2px dotted #006639;
}

.about__intro_txt {
  max-width: 430px;
  width: 100%;
}

.about__price_item:not(:last-child) {
  margin-right: 10px;
}

.about__dotted_box {
  /*border: 2px dotted #006639; */
  /*padding: 80px;*/
  /*background-color: #fefdf3; */
  position: relative;
  padding: 90px 0 0 0;
  margin-top: 70px;
  border-radius: 15px;
}

.about__dotted_hdg {
  text-align: center;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #006639;
  max-width: 748px;
  width: 95%;
  padding: 15px;
  border-radius: 70px;
}

.about__dotted_hdg::after {
  content: url(../img/top/about_campaign_hdg_triangle.svg);
  display: inline-block;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  width: 40px;
  margin: auto;
}

.top-exam {
  margin: 150px 0;
}

.exam__img_flexbox {
  padding: 110px 20px;
  background: url(../img/top/exam_bkg.png) no-repeat center / auto 100%;
}

.exam__img_item:not(:last-child) {
  margin-right: 5%;
}

.info__icn_item {
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #006639;
  text-align: center;
  padding: 12px 10px;
  width: calc(84% / 5);
}

.check__block {
  background-color: #fff;
  border: 3px solid #e96f3c;
  border-radius: 100px;
  position: relative;
  padding: 60px 35px 50px;
  color: #e96d3a;
  margin: 120px 0 0;
}

.check__cin {
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.check__img_item:not(:last-child) {
  margin-right: 20px;
}

.top-flow {
  margin: 230px 0 170px;
  position: relative;
}

.top-flow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #006639;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.top-flow .hdg--board {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
}

.flow__slide_container {
  max-width: 1020px;
  width: 70%;
  margin: auto;
}

.flow__list {
  padding: 60px 0 0;
}

[class*="flow_item--"] {
  position: relative;
  background-color: #fefdf3;
  border-radius: 7px;
  font-weight: bold;
  color: #006639;
  font-size: 1.8rem;
  padding: 40px 20px 30px;
  height: auto;
}

.flow__num {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #006639;
  font-size: 3.4rem;
  font-family: "AlteHaasGroteskBold";
  background: url(../img/top/flow_num_bkg.svg) no-repeat 50.5%;
  font-style: italic;
  padding: 13px 0;
}

.flow__hdg {
  text-align: center;
  margin: 20px 0;
}

.flow__img_item:not(:last-child) {
  margin-right: 40px;
}

.flow__next,
.flow__prev {
  width: 124px;
  height: 80px;
  background-size: contain;
}

.flow__next {
  background-image: url(../img/top/flow_next.svg);
}

.flow__prev {
  background-image: url(../img/top/flow_prev.svg);
}

.flow__pagination {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  font-family: "AlteHaasGroteskBold";
}

.flow__slide_wrapper {
  position: relative;
  padding: 100px 15px 170px;
}

.flow__slide_wrapper::before,
.flow__slide_wrapper::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -9px;
  z-index: 2;
}

.flow__slide_wrapper::before {
  content: url(../img/top/flow_deco_man.png);
  left: 50px;
}

.flow__slide_wrapper::after {
  content: url(../img/top/flow_deco_woman.png);
  right: 45px;
}

.flow__slide_wrapper .swiper-pagination-bullet {
  background-color: transparent;
  font-size: 3.2rem;
  color: #fff;
  width: auto;
  height: auto;
  margin: 0 25px;
  border-radius: 0;
  padding-bottom: 0;
}

.flow__slide_wrapper .swiper-pagination-bullet-active {
  border-bottom: 3px solid #fff;
}

.flow__list .location__item {
  max-width: 880px;
  width: 100%;
  margin: 0 auto 10px;
}

.top-faq {
  margin-bottom: 100px;
}

.faq__item {
  background-color: #fff;
  border: 1px solid #006639;
  border-radius: 10px;
  box-shadow: 6px 6px 0 #f1eee0;
  margin-bottom: 30px;
  overflow: hidden;
}

.faq__ttl,
.faq__detail {
  position: relative;
  color: #006639;
  font-weight: bold;
}

.faq__ttl::before,
.faq__detail::before {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-family: "AlteHaasGroteskBold";
  font-size: 3.4rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.faq__ttl::before {
  content: "Q.";
  color: #fff;
  background-color: #006639;
  height: 100%;
}

.faq__ttl::after {
  content: url(../img/top/arrow_down_green.svg);
  position: absolute;
  right: 25px;
  top: 14px;
}

.open .faq__ttl::after {
  content: url(../img/top/arrow_up_green.svg);
  top: 13px;
}

.faq__detail::before {
  content: "A.";
  color: #006639;
}

.faq__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 14px 60px 14px 90px;
}

.faq__detail {
  border-top: 1px dotted #006639;
  font-size: 1.8rem;
  padding: 25px 15px 25px 90px;
}

.faq__item .location__item_detail .check__list_item_inner {
  font-size: 1.4rem;
}

.faq__item .check__list_item_inner {
  font-size: 1.8rem;
  background-color: #edf3eb;
}

.faq__item .bring__block_tab_inner,
.faq__item .bring__block_detail {
  background-color: #fefdf3;
}

.faq__item .bring__block .check__list_item_inner {
  background-color: #f4f4e6;
}

.center__list_item {
  background-color: #fefdf3;
  border: 1px dashed #006639;
  border-radius: 7px;
  padding: 15px 20px 15px 115px;
  position: relative;
  width: calc(98% / 2);
  margin-bottom: 20px;
}

.center__area {
  display: inline-block;
  position: absolute;
  top: 23px;
  left: 20px;
  background-color: #fff;
  border: 1px solid #006639;
  border-radius: 5px;
  font-size: 1.5rem;
  width: 80px;
  text-align: center;
  font-weight: bold;
}

.center__contact {
  font-size: 2rem;
  line-height: 1.3;
}

.center__contact a {
  color: #006639;
}

.center__contact_num {
  font-size: 2.8rem;
}

.fax__num,
.fax__num a {
  color: #006639;
  text-decoration: none !important;
  pointer-events: none;
}

@media screen and (max-width: 980px) {
  .flow__img_list {
    display: block;
  }
  .flow__img_item {
    position: relative;
    left: -15px;
  }
  .flow__img_item:not(:last-child) {
    margin: 0 0 60px;
  }
}

@media screen and (max-width: 880px) {
  .about__list_item {
    display: block;
  }
  .about__intro_txt {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top-main {
    background-size: 35% auto, 35% auto;
  }
  .info__icn_item {
    width: calc(95% / 2);
    margin: 0 0 20px;
  }
  .flow__slide_container,
  .center__list_item {
    width: 100%;
  }
  .flow__slide_wrapper {
    padding: 130px 15px 170px;
  }
  .flow__slide_wrapper::before,
  .flow__slide_wrapper::after {
    transform: scale(0.7) translateY(45px);
  }
  .flow__slide_wrapper::before {
    left: -20px;
  }
  .flow__slide_wrapper::after {
    right: -25px;
  }
  .flow__slide_wrapper .swiper-pagination-bullet {
    margin: 0 10px;
    font-size: 2.6rem;
  }
  .flow__pagination {
    margin: auto;
    left: 0;
    right: 0;
    top: 90px;
  }
  .flow__btn_flexbox {
    max-width: 500px;
    width: 100%;
    margin: 40px auto 0;
  }
  .flow__prev,
  .flow__next {
    position: relative;
    margin: 0;
  }
  .flow__next {
    margin-left: auto;
  }
}

@media screen and (min-width: 551px) {
  .faq__item:first-of-type {
    margin-top: 70px;
  }
}

@media screen and (max-width: 550px) {
  .top-main {
    padding: 30px 0 0;
  }
  .main__block {
    padding-bottom: 40px;
  }
  .about__hdg {
    padding: 25px 15px;
  }
  .about__hdg img {
    margin-right: -20px;
  }
  .about__block {
    padding-bottom: 0;
  }
  .about__list_item:first-child {
    padding-top: 0;
  }
  .about__dotted_box {
    padding: 80px 0px 40px;
  }
  .top-exam {
    margin: 100px 0;
  }
  .exam__img_flexbox {
    display: block;
    padding: 50px 20px;
    background: url(../img/top/exam_bkg_sp.png) no-repeat center / auto 100%;
  }
  .exam__img_item:not(:last-child) {
    margin: 0 0 30px;
  }
  .check__block {
    margin-top: 60px;
  }
  .check__img_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .check__img_item {
    width: calc(95% / 2);
    text-align: center;
    margin: 0 0 20px !important;
  }
  .top-flow {
    margin: 150px 0 100px;
  }
  .flow__num {
    top: -30px;
    padding: 7px 0;
    background-size: contain;
  }
  .flow__slide_wrapper {
    padding-bottom: 130px;
  }
  .flow__slide_wrapper::before,
  .flow__slide_wrapper::after {
    transform: scale(0.5) translateY(105px);
  }
  .flow__slide_wrapper::before {
    left: -30px;
  }
  .flow__slide_wrapper::after {
    right: -45px;
  }
  .faq__ttl {
    font-size: 2rem;
    padding: 14px 50px 14px 65px;
  }
  .faq__ttl::before,
  .faq__detail::before {
    font-size: 2.8rem;
    width: 55px;
    height: 100%;
    line-height: 55px;
  }
  .faq__detail {
    padding: 15px 15px 15px 65px;
    font-size: 1.7rem;
  }
  .faq__item .check__list_item_inner,
  .center__contact {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 480px) {
  .flow__next,
  .flow__prev {
    background-size: 70% auto;
  }
  .center__area {
    top: 17px;
  }
  .center__list_item {
    padding: 60px 15px 15px;
  }
  .center__contact_num {
    font-size: 1.8rem;
  }
}
/*220324追加*/
.about_campaign_box_22 {
  display: flex;
  max-width: 970px;
  margin: 40px auto;
  justify-content: space-between;
}

.about_campaign_22 {
  max-width: 460px;
}

.about_campaign_22:first-child {
  margin-right: 30px;
}

@media screen and (max-width: 550px) {
  .about_campaign_box_22 {
    display: block;
  }
  .about_campaign_22:first-child {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
