@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #1A1A1A;
  --color-black2: #333A46;
  --color-white: #ffffff;
  --color-primary: #B6E0ED;

  /* --din-2014: "din-2014-narrow", sans-serif; */
  --source-han-sans: "source-han-sans-japanese",
    sans-serif;
  --shuei-m: "dnp-shuei-mgothic-std", sans-serif;
  --din-Condensed: "din-condensed", sans-serif;
  --rodin: "fot-rodin-pron", sans-serif;


  --serif: "Noto Serif JP", serif;
  --zenmaru: "Zen Maru Gothic", sans-serif;
  --header: 10rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 9rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: clamp(1px, 0.5208333vw, 100px);
  scroll-behavior: smooth;
  background: var(--color-white);
  color: var(--color-black);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.8rem;
}



a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:767px) {
  html {
    /* 750px>> 10px */
    font-size: 1.3333vw;
  }

  body {
    font-size: 2.5rem;
  }

}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 10rem;
}

.section {
  padding-top: 10rem;
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-primary);
  padding-top: clamp(1px, 1.8rem, 15px);
  padding-bottom: clamp(1px, 1.8rem, 15px);
}

.nav_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_logo {
  width: 34rem;
  padding-right: 1.8rem;
  margin-right: 1.8rem;
  border-right: 1px solid var(--color-black2);
}

.nav_btn {
  width: 21.4rem;
  padding-left: 1.8rem;
  margin-left: 1.8rem;
  border-left: 1px solid var(--color-black2);
}

.nav_under {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}


.hamburger {
  position: relative;
  right: 0;
  top: 0;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  z-index: 300;
  transition: all .1s ease-out;
}

.hamburger::after {
  position: absolute;
  content: "MENU";
  color: var(--color-black);
  font-size: 2rem;
  font-family: var(--din-Condensed);
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  text-align: center;
  width: 100%;
  opacity: 1;
  transition: all .2s ease-out;
}

.open_nav .hamburger::after {
  opacity: 0;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 4rem;
  height: 1px;
  background-color: var(--color-black);
  transition: all .4s ease-out;
  transform: translateX(-50%);
}

.hamburger__line--1 {
  top: 30%;
}

.hamburger__line--2 {
  top: 40%;
}

.hamburger__line--3 {
  top: 50%;
}

/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(35deg);
  top: 50%;
}

.open_nav .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-35deg);
  top: 50%;
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all .3s ease-out;
  z-index: 200;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  padding-top: 4rem;
  margin-top: clamp(0.1rem, 11rem, 110px);
  z-index: 1;
}

nav.global__nav::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(29 27 23 / 84%);
  z-index: -1;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}

nav.gnav.global__nav ul {
  display: block;
  text-align: center;
  position: relative;
  width: 71rem;
  margin: 0 auto;
}

nav.gnav.global__nav ul li {
  border-bottom: 1px solid var(--color-white);
}

nav.gnav.global__nav ul a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  padding: 3rem 2rem;
  letter-spacing: 0.1em;
}

nav.gnav.global__nav ul a span {
  font-family: var(--serif);
  font-size: 3rem;
  letter-spacing: 0.05em;
}

nav.gnav.global__nav .sp_btn {
  display: none;
}

.sp_nav {
  display: none;
}

@media screen and (max-width:767px) {
  header {
    padding-right: 5rem;
  }

  .nav_md,
  .nav_btn {
    display: none;
  }

  .nav_logo {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .hamburger {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border-left: 1px solid;
    width: 8rem;
    height: 7rem;
  }

  .hamburger::after {
    bottom: -6%;
  }


  nav.global__nav {
    padding-top: 0;
    margin-top: 0;
  }

  nav.gnav.global__nav ul li:last-child {
    border: none;
  }

  .sp_nav {
    background: var(--color-primary);
    padding: 1.8rem 5rem 1.8rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp_nav .nav_btn {
    display: block;
    border: none;
  }

  nav.gnav.global__nav .sp_btn {
    display: block;
    background: var(--color-white);

  }

  nav.gnav.global__nav .sp_btn ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 5rem 0 3rem;
  }

  nav.gnav.global__nav .sp_btn li {
    border: none;
  }

  nav.gnav.global__nav .sp_btn li a {
    color: var(--color-black);
    border: 1px solid;
    padding: 1rem 3rem;
    border-radius: 100px;
  }
}

/*================================================
 *  banner
 ================================================*/
#fix_btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  padding: 10px 0;
  background: #B6E0ED;
  display: none;
}

#fix_btn a {
  width: 33rem;
  margin: 0 auto;
  display: block;
  max-width: 340px;
}


@media screen and (max-width:767px) {
  #fix_btn {
    display: block;
  }
}


/*================================================
* mv
================================================*/
#mv {
  margin-top: clamp(0.1rem, 11rem, 110px);
  padding: 0;
}

#mv .lead {
  text-align: center;
  font-size: 3rem;
  padding: 3rem 0;
  color: var(--color-black2);
}

#mv .lead img {
  width: 7rem;
  margin: 3rem auto 0;
}

@media screen and (max-width:767px) {
  #mv {
    margin-top: 9rem;
  }
}


/*================================================
* campaign
================================================*/
.campaign {
  padding: 0;
}

.cpbtnArea {
  position: relative;
}

.cp_btn {
  width: 39rem;
  position: absolute;
  top: 47rem;
  left: 90rem;
}

@media screen and (max-width:767px) {
  .cp_btn {
    top: 53rem;
    left: 17rem;
  }
}

/*================================================
* intro
================================================*/
#intro {
  background: url(../images/intro_bg.webp) no-repeat center top/cover;
}

#intro .wrap {
  width: 123rem;
  margin: 0 auto;
}


.intro_top {
  display: flex;
  justify-content: center;
  padding-left: 6rem;
}

.imtro_img {
  width: 33rem;
}

.intro_txt {
  position: relative;
  left: -7rem;
}

.intro_txt h2 {
  font-size: 3.6rem;
  margin-bottom: 3rem;
  white-space: nowrap;
  font-weight: 700;
}

.intro_txt .name {
  font-size: 2.4rem;
  text-align: center;
}

.intro_txt .name strong {
  font-size: 4rem;
  margin: 0 1rem;
}

.intro_txt .name span {
  font-size: 2.9rem;
}

.intro_txt .meta {
  font-size: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
}

.intro_txt .txt {
  width: 79rem;
  margin: 3rem auto 0 10rem;
}

.intro_img-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  width: 123rem;
  margin: -10rem auto 0;
}

#intro h3 {
  text-align: center;
  font-size: 2.6rem;
  line-height: 2.2;
  margin: 4rem auto;
}

#intro h4 {
  width: 86rem;
  margin: 10rem auto;
}

@media screen and (max-width:767px) {
  .intro_top {
    flex-wrap: wrap;
    position: relative;
    width: 69rem;
    margin: 0 auto;
    padding: 0;
  }

  .imtro_img {
    position: absolute;
    left: 0;
    top: 58rem;
  }

  .intro_txt {
    width: 100%;
    left: 0;
  }

  .intro_txt h2 {
    font-size: 4.3rem;
    margin-bottom: 3rem;
    white-space: wrap;
    text-align: center;
    margin-bottom: 45rem;
  }

  .intro_txt .name {
    font-size: 2.2rem;
    text-align: left;
    width: 32rem;
    margin-left: 35rem;
  }

  .intro_txt .name strong {
    font-size: 5.2rem;
    margin: 0;
    display: block;
  }

  .intro_txt .name span {
    font-size: 2.8rem;
  }

  .intro_txt .meta {
    font-size: 2.1rem;
    width: 32rem;
    margin-left: 35rem;
  }

  .intro_txt .txt {
    width: 62rem;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 16rem;
  }

  .intro_img-list {
    width: 69rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0rem;
    z-index: 1;
    position: relative;
  }



  .intro_img-list li:nth-child(3) {
    display: none;
  }

  #intro h3 {
    text-align: center;
    font-size: 3.1rem;
  }

  #intro h4 {
    width: 70rem;
    margin: 4rem auto;
  }
}

/*================================================
* nayami
================================================*/
#nayami {
  background: url(../images/nayami_bg.webp) no-repeat center top/cover;
  margin-top: -5rem;
  padding-top: 15rem;
  padding-bottom: 13rem;
}

#nayami .wrap {
  width: 104rem;
  margin: 0 auto;
}

#nayami h2 {
  width: 73rem;
  margin: 0 auto 5rem;
}


#nayami ul {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}


#nayami ul li {
  position: relative;
}

#nayami ul li p {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  top: 9rem;
  left: 0;
}

#nayami h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 6rem;
  line-height: 2.2;
}

.trainingroom {
  width: 34.5rem;
  padding: 5rem 4rem;
  background: rgb(0 30 97 / 92%);
  color: var(--color-white);
  margin-top: 10rem;
  margin-top: 20rem;
  margin-left: 40rem;
}

.trainingroom img {
  width: 25rem;
  margin: 0 auto;
}

.trainingroom h4 {
  font-size: 2.8rem;
  margin: 3rem auto;
  text-align: center;
  font-weight: 700;
}

.trainingroom p {
  font-size: 2rem;
  padding: 0 1rem;
  line-height: 2;
}

@media screen and (max-width:767px) {
  #nayami {
    background: url(../images/nayami_bg_sp.webp) no-repeat center top/cover;
    padding-top: 10rem;
    padding-bottom: 80rem;
  }

  #nayami .wrap {
    width: 69rem;
  }

  #nayami h2 {
    width: 69rem;
    margin: 0 auto 3rem;
  }

  #nayami ul {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    width: 54rem;
    margin: 0 auto;
  }

  #nayami ul li p {
    font-size: 2.3rem;
    top: 13rem;
  }

  #nayami h3 {
    font-size: 3rem;
    margin-top: 4rem;
    line-height: 1.8;
  }

  .trainingroom {
    width: 58rem;
    padding: 5rem 4rem;
    background: rgb(0 30 97 / 92%);
    color: var(--color-white);
    margin: 17rem auto 0;
  }

  .trainingroom img {
    width: 47rem;
  }

  .trainingroom h4 {
    font-size: 3.6rem;

  }

  .trainingroom p {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

/*================================================
* oneonone
================================================*/

.dot_bg {
  background: url(../images/dot_bg.webp) no-repeat center top/cover;
}

#oneonone {
  padding-top: 15rem;
  margin-top: -11rem;
  padding-bottom: 0;
}

#oneonone .wrap {
  width: 110rem;
  margin: 0 auto;
}

.one_txt {
  width: 70rem;
  margin-bottom: -19rem;
}

.one_txt p {
  font-size: 2.2rem;
  margin: 2rem 0 0;
  line-height: 2;
}

@media screen and (max-width:767px) {
  #oneonone .wrap {
    width: 72rem;
    margin: 0 auto;
  }

  .one_txt {
    width: 65rem;
    margin-bottom: 0rem;
    margin: 0 auto;
  }

  .one_txt p {
    font-size: 2.5rem;
    margin: 2rem;

  }
}

/*================================================
* personnel
================================================*/

#personnel {
  padding-bottom: 0;
}

.circle_list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  width: 70rem;
  margin: 0 auto;
}

.circle_list li {
  aspect-ratio: 1/1;
  position: relative;
}

.circle_list li p {
  text-align: center;
  font-family: var(--zenmaru);
  font-size: 3rem;
  position: absolute;
  width: 100%;
  line-height: 1.3;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  letter-spacing: 0;
}


#personnel .bg {
  position: relative;
  z-index: 1;
  padding-bottom: 10rem;
}

#personnel .bg::before {
  position: absolute;
  content: "";
  top: -16rem;
  left: 0;
  width: 100%;
  height: calc(100% + 16rem);
  background: rgb(182 224 237 / 30%);
  z-index: -1;
}


.p_flow h2 {
  width: 37rem;
  margin: 6rem auto 1rem;
}

.p_flow-card {
  background: var(--color-white);
  border: 0.6rem solid #CFB465;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 2rem 4rem;
  width: 103rem;
  margin: 0 auto;
  box-shadow: -0.6rem 0.6rem 0.6rem rgb(0 0 0 / 15%);
  position: relative;
}

.p_flow-card:not(:last-of-type) {
  margin-bottom: 12rem;
}

.p_flow-card:not(:last-of-type)::before {

  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/p_flow-arrow.png);
  width: 6.4rem;
  height: 6.4rem;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
}

.p_flow-card .txt {
  width: 40rem;
}

.p_flow-card .txt .num {
  font-family: var(--din-Condensed);
  text-align: center;
  font-size: 9.3rem;
  color: #CFB465;
  line-height: 1;
}

.p_flow-card .txt .num span {
  display: block;
  font-size: 3rem;
  color: var(--color-black);
  letter-spacing: 0.1em;
}

.p_flow-card .txt h3 {
  font-size: 3rem;
  text-align: center;
}

.p_flow-card .txt p {
  line-height: 2;
  width: 95%;
  margin: 2rem auto 0;
}

.p_flow-card .img {
  width: 54rem;
}

.p_flow-card .img h4 {
  font-size: 4.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p_flow-card .img h4 span {
  font-size: 6rem;
  font-weight: 400;
  font-family: var(--din-Condensed);
  padding-left: 2rem;
  position: relative;
}

.p_flow-card .img h4 span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: var(--color-black);
}

.p_flow-card .img h4 span small {
  font-size: 4rem;
}

.p_flow-card .img img {
  border-radius: 3rem;
  margin-top: 1rem;
  width: 80%;
}

@media screen and (max-width:767px) {
  .p_flow-card {
    flex-wrap: wrap;
    padding: 5rem 2rem 4rem 4rem;
    width: 69rem;
  }

  .p_flow-card .txt,
  .p_flow-card .img,
  .p_flow-card .img img {
    width: 100%;
  }

  .p_flow-card .img h4 {
    justify-content: start;
    gap: 2rem;
    position: absolute;
    top: 3.5rem;
    left: 14rem;
  }


  .p_flow-card .txt .inner {
    display: flex;
    align-items: start;
    gap: 1.5rem;
  }

  .p_flow-card .txt h3 {
    margin-top: 7rem;
    font-size: 3.5rem;
  }

  .p_flow-card .txt .num {
    font-size: 8rem;
  }

  .p_flow-card .txt .num span {
    font-size: 1.6rem;
  }
}

/*================================================
* case
================================================*/
#case h2 {
  width: 78rem;
  margin: 0 auto 5rem;
}

.case_box {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  margin-top: 4rem;
}

.case_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/case_bg.png) no-repeat center top/cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.case_box.box02 {
  background: url(../images/case_bg02.png) no-repeat center top/cover;
}

.case_box .wrap {
  width: 110rem;
  margin: 0 auto;
}


.case_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.case_txt {
  width: 72rem;
}

.case_txt p {

  text-align: center;
  font-size: 2.8rem;
  margin-top: 3rem;
  color: var(--color-black2);
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 700;
}

.case_img {
  width: 34rem;
}

.case_top img.arrow {
  width: 80%;
  margin: 6rem auto 0;
}

.case_box h4 {
  text-align: center;
  font-size: 3rem;
  color: var(--color-black2);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 3rem 0 6rem;
}

.case_box h5 {
  text-align: center;
  font-size: 1.7rem;
  color: var(--color-white);
  background: var(--color-black2);
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}


.case_box ul {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.case_box.box02 ul {
  gap: 4rem;
}

.case_box ul li {
  width: 22rem;
}

.case_box ul li p {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.8rem;
}

.case_box.box01,
.case_box.box03 {
  background: #B6E0ED;
}


@media screen and (max-width:767px) {
  #case h2 {
    width: 70rem;
  }

  .case_box .wrap {
    width: 71rem;
  }

  .case_img {
    width: 19rem;
  }

  .case_top {
    position: relative;
  }

  .case_txt {
    width: 100%;
  }

  .case_txt img {
    position: absolute;
    width: auto;
    max-width: unset;
    height: 16rem;
    top: 3rem;
    left: 21rem;
  }

  .case_txt p {
    text-align: center;
    font-size: 3.1rem;
    margin-top: 3rem;
    color: var(--color-black2);
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
  }

  .case_top img.arrow {
    width: 96%;
    margin: 3rem auto 0;
  }

  .case_box h4 {
    font-size: 2.8rem;
    margin: 3rem 0 3rem;
  }

  .case_box h5 {
    font-size: 2.1rem;
  }

  .case_box ul {
    flex-wrap: wrap;
  }
}

/*================================================
* price
================================================*/
#price {
  background: url(../images/price_bg.webp) no-repeat center top/cover;
}

#price .wrap {
  width: 104rem;
  margin: 0 auto;
}

#price h2 {
  width: 73rem;
  margin: 0 auto 6rem;
}


#price p {
  width: 99rem;
  margin: 10rem auto 0;
}

@media screen and (max-width:767px) {
  #price .wrap {
    width: 69rem;
  }

  #price h2 {
    width: 69rem;
  }


  #price p {
    width: 62rem;
    margin: 5rem auto 0;
  }
}

/*================================================
* qa
================================================*/
#qa {
  background: url(../images/qa_bg.webp) no-repeat center top/cover;
}

#qa h2 {
  width: 73rem;
  margin: 0 auto 6rem;
}

#qa .wrap {
  width: 114.3rem;
  margin: 0 auto;
}


.qa_list dt {
  background: #B6E0ED;
  font-size: 2.3rem;
  padding: 2rem 2rem 2rem 13rem;
  position: relative;
  font-family: var(--zenmaru);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.qa_list dd {
  position: relative;
  font-size: 2rem;
  padding: 2rem 2rem 2rem 17rem;
  margin-bottom: 6rem;
}


.qa_list dt::before,
.qa_list dd::before {
  position: absolute;
  content: "Q";
  font-family: var(--serif);
  font-size: 3.8rem;
  color: #808080;
}

.qa_list dt::before {
  top: 0.5rem;
  left: 3rem;
}

.qa_list dd::before {
  content: "A";
  font-size: 5rem;
  top: 0rem;
  left: 11rem;
  color: #92B8BF;
}

.qa_list dd a {
  font-size: 1.5rem;
  text-decoration: underline;
  display: inline-block;
  margin-top: 2rem;
}

@media screen and (max-width:767px) {
  #qa h2 {
    width: 69rem;
  }

  #qa .wrap {
    width: 100%;
    margin: 0 auto;
  }

  .qa_list dt {
    font-size: 2.8rem;
    padding: 2rem 2rem 2rem 8rem;
  }

  .qa_list dd {
    font-size: 2.5rem;
    padding: 2rem 2rem 2rem 12rem;
    margin-bottom: 3rem;
  }

  .qa_list dd::before {
    left: 6rem;
  }

  .qa_list dd a {
    font-size: 2.1rem;
  }
}

/*================================================
* access
================================================*/
#access {
  background: #F6F1E2;
  padding-bottom: 0;
}

#access h2 {
  width: 73rem;
  margin: 0 auto 6rem;
}

.acc_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;

}

.acc_logo {
  width: 23rem;
}

.acc_txt {
  width: 62rem;
}

.acc_txt h3 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--color-black2);
}

.acc_txt p {
  font-size: 2rem;
  margin: 1rem 0 3rem;
  color: var(--color-black2);
}

.acc_txt .eki {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.acc_txt .eki img {
  width: 17rem;
}

.acc_txt .eki ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 2;
  font-size: 2rem;
}

.acc_txt .eki ul li::before {
  position: absolute;
  content: "■";
  left: 0;
  top: 0;
  color: #CFB465;
}


.acc_map {
  background: #B6E0ED;
  margin-top: 4rem;
}

.acc_map iframe {
  display: block;
  width: 150rem;
  height: 78rem;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  #access h2 {
    width: 69rem;
  }

  .acc_box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .acc_txt h3 {
    text-align: center;
    font-size: 3rem;
  }

  .acc_txt p {
    font-size: 2.4rem;
    text-align: center;
  }

  .acc_txt .eki {
    justify-content: center;
    gap: 2rem;
  }

  .acc_txt .eki img {
    width: 16rem;
  }

  .acc_map iframe {
    width: 100%;
    height: 44rem;
  }
}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 *  footer
 ================================================*/
.instalink {
  display: block;
  width: 4rem;
  margin: 0 auto 4rem;
}

.ft_top {
  background: url(../images/dot_bg.webp) no-repeat center top/cover;
  padding: 6rem 0;
  text-align: center;
}

.ft_top .square {
  font-size: 2.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 6rem;
  border: 1px solid var(--color-black);
  border-radius: 2rem;
  margin: 0 auto 4rem;
}

.ft_top p {
  font-size: 2.6rem;
}

.ft_under {
  background: #B6E0ED;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 0;
}

.ft_under a {
  font-size: 1.7rem;
  padding: 0.4rem 3rem;
  border: 1px solid var(--color-black);
  border-radius: 100rem;
}

@media screen and (max-width:767px) {
  .ft_top {
    padding-bottom: 20rem;
  }

  .ft_under {
    display: none;
  }

  .instalink {
    margin: 0 auto 2rem;
  }
}