@charset "utf-8";

/*===============================================================================

	リセット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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
  content: '';
  content: none;
}
i {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*===============================================================================

	基本設定

===============================================================================*/
:root {
  --fontcolor: #3E4D47;
  --maincolor: #3E9595;
  --maincolor-hover: #7ABBBB;
  --accentcolor: #EFD25F;
  --accentcolor-hover: #F4DF8C;
  --bgcolor: #E2F2ED;
  --bgbeige: #FAF9F8;
  --font: "M PLUS Rounded 1c", serif, 
          "Yu Gothic UI", "Yu Gothic", "Meiryo",
          "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
          "Arial Rounded MT Bold", "Helvetica Rounded", sans-serif;
  --normalfont: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --border-color: #B2DBCE;
  --shadow: 0px 0px 14px 0px rgba(97, 126, 117, .20);
}

body {
  color: var(--fontcolor);
  font-size: 16px;
  font-family: var(--normalfont);
  line-height: 1.8em;
  letter-spacing: 0.08em;
  background-color: #FDFEFF;
  scroll-behavior: smooth;
}
@media screen and (max-width:750px) {
  body {
    font-size: 15px;
    line-height: 1.8em;
  }
}
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
a {
  color: var(--fontcolor);
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: 0.6;
}
img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
#container {
  overflow: hidden;
}


/*===============================================================================

	ショートコード

===============================================================================*/
._pc {display: block;}
._sp {display: none;}
@media screen and (max-width:750px) {
  ._pc {display: none;}
  ._sp {display: block;}
}

._w100 {width: 100% !important;}._w70 {width: 70%;}._w50 {width: 50%;}._w30 {width: 30%;}

._mt0 {margin-top: 0 !important;}._mt5 {margin-top: 5px !important;}._mt10 {margin-top: 10px !important;}._mt15 {margin-top: 15px !important;}._mt20 {margin-top: 20px !important;}._mt30 {margin-top: 30px !important;}._mt40 {margin-top: 40px !important;}._mb0 {margin-bottom: 0 !important;}._mb5 {margin-bottom: 5px !important;}._mb10 {margin-bottom: 10px !important;}._mb20 {margin-bottom: 20px !important;}._mb30 {margin-bottom: 30px !important;}._mb40 {margin-bottom: 40px !important;}._mb50 {margin-bottom: 50px !important;}._mb60 {margin-bottom: 60px !important;}._mr0 {margin-right: 0 !important;}._mr5 {margin-right: 5px !important;}._mg-auto {margin: auto;}

._pt0 {padding-top: 0 !important;}._pt10 {padding-top: 10px !important;}._pt20 {padding-top: 20px !important;}._pt30 {padding-top: 30px !important;}._pt40 {padding-top: 40px !important;}._pb0 {padding-bottom: 0 !important;}._pb10 {padding-bottom: 10px !important;}._pb20 {padding-bottom: 20px !important;}._pb30 {padding-bottom: 30px !important;}._pb40 {padding-bottom: 40px !important;}._pb50 {padding-bottom: 50px !important;}._pb60 {padding-bottom: 60px !important;}._pr5 {padding-right: 5px !important;}

._font-bold {font-weight: bold;}
._text-center {text-align: center;}
._text-left {text-align: left;}
._text-right {text-align: right;}

/* 矢印アイコン */
._icon-arrow {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  padding: 8px;
  margin: auto;
}
._icon-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
}
._icon-arrow.-right::before {
  transform: rotate(45deg);
}


/*===============================================================================

	ヘッダー関連

===============================================================================*/

/* ヘッダー
************************************************************/
#header {
  display: table;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  width: 92%;
  margin: auto;
  border-radius: 100vw;
  background-color: #FFFFFF;
  z-index: 9999;
}
#header a:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 1150px) {
  #header {
    width: 95%;
  }
}

#header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-family: var(--font);
}
#header-content .content-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 20px 60px;
  border-radius: 100vw;
  box-shadow: var(--shadow);
  background-color: #FFFFFF;
  z-index: 9999;
}
@media screen and (max-width:1600px) {
  #header-content {
    width: 100%;
  }
}
@media screen and (max-width:1500px) {
  #header-content .content-in {
    padding: 10px 30px;
  }
}
@media screen and (max-width: 1150px) {
  #header-content {
    display: none;
  }
}

#header-logo {
  max-width: 370px;
  min-width: 300px;
}
#header-logo img {
  border-radius: 0;
}

/* ヘッダーナビ（PC）
************************************************************/
#header-navi .menu {
  display: flex;
  justify-content: space-around;
}
#header-navi .menu > li {
  display: table;
  width: max-content;
  font-size: 17px;
  text-align: center;
}
#header-navi .menu > li:last-child {
  margin-right: 0;
}
#header-navi .menu > li > a {
  display: table-cell;
  padding: 10px;
  font-weight: 500;
  vertical-align: middle;
}
#header-navi .menu > li > a .en {
  display: block;
  color: #96D0BE;
  font-size: 10px;
  font-weight: normal;
  font-family: var(--normalfont);
  line-height: 1.0em;
  letter-spacing: 0.02em;
}
@media screen and (max-width:1500px) {
  #header-navi .menu > li {
    font-size: 16px;
  }
}
@media screen and (max-width:1250px) {
  #header-navi .menu > li > a {
    font-size: 15px;
    line-height: 1.6em;
  }
  #header-navi .menu > li > a .en {
    font-size: 8px;
  }
}
@media screen and (max-width: 1150px) {
  #header-navi .menu > li {
    margin-right: 0;
  }
}

#header-navi .menu ._icon-arrow {
  padding: 6px;
}
#header-navi .menu ._icon-arrow::before {
  width: 6px;
  height: 6px;
  border-color: var(--maincolor);
}

#header-navi .has-child.-type-01 .sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 32px 2%;
  background: var(--bgcolor);
  box-shadow: var(--shadow);
  box-sizing: border-box;
  opacity: 0;
  animation: fadeIn 0.4s ease-in-out forwards;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-10px);
  z-index: 1;
}
#header-navi .has-child.-type-01:hover .sub-menu {
  display: block;
  top: 7.5vh;
  height: auto;
  max-height: 80vh;
  border-radius: 1vw;
  opacity: 1;
  overflow: scroll;
  animation: fadeIn 0.4s ease-in-out forwards;
  transform: translateY(0);
}
#header-navi .has-child.-type-01:hover .sub-menu.-layout-01 {
  display: flex;
  justify-content: center;
}
#header-navi .has-child.-type-01:hover .sub-menu.-layout-02 {
  display: block;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-01 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 1120px;
  height: auto;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-01 ul li {
  display: table;
  position: relative;
  width: 19%;
  text-align: center;
  border: none;
  border-radius: 10px;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-01 ul li a {
  display: table-cell;
  padding: 15px 28px 15px 15px;
  color: var(--maincolor);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  text-align: left;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  background-color: #FFFFFF;
  vertical-align: middle;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-01 ul li a:hover {
  border-color: var(--maincolor);
  opacity: 1;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-01 ul li a img {
  height: 58px;
}
@media screen and (max-width:1500px) {
  #header-navi .has-child.-type-01:hover .sub-menu {
    top: 70px;
  }
}
@media screen and (max-width:1200px) {
  #header-navi .has-child.-type-01 .sub-menu.-layout-01 ul li a {
    font-size: 14px;
  }
}

#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li {
  display: table;
  width: max-content;
  height: auto;
  text-align: center;
  border: 1px solid var(--maincolor);
  border-radius: 0.5rem;
  background-color: #FFFFFF;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li:last-child,
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li:nth-child(4n) {
  margin-right: 0;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li a {
  display: table-cell;
  padding: 10px;
  color: var(--maincolor);
  font-size: 15px !important;
  font-weight: 500;
  font-family: var(--normalfont) !important;
  line-height: 1.4em;
  text-align: center;
  vertical-align: middle;
  transition: none;
  transition: all 0.3s ease 0s;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li:hover {
  color: #FFFFFF;
  background-color: var(--maincolor);
  transition: all 0.5s ease 0s;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li:hover a {
  color: #FFFFFF;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column .title {
  position: relative;
  padding: 0 0 5px 16px;
  margin: 60px 0 20px;
  font-size: 1.6em;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", serif, "Yu Gothic UI", "Yu Gothic", "Meiryo", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Arial Rounded MT Bold", "Helvetica Rounded", sans-serif;
  text-align: left;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column:first-child .title {
  margin-top: 0;
}
#header-navi .has-child.-type-01 .sub-menu.-layout-02 .column .title::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -15px;
  bottom: 0;
  width: 38px;
  height: 31px;
  margin: auto;
  background-image: url('../images/ttl_accessory.svg');
  background-size: cover;
  z-index: -1;
}
#header-navi .has-child.-type-01 .sub-menu ._icon-arrow::before {
  border-color: var(--maincolor);
}
@media screen and (max-width:1366px) { 
  #header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul {
    width: 90%;
  }
}
@media screen and (max-width:1250px) {
  #header-navi .has-child.-type-01 .sub-menu.-layout-02 .column ul li a {
    line-height: 1.6em;
  }
}

#header-navi .has-child.-type-02 {
  position: relative;
}
#header-navi .has-child.-type-02:hover {
  transition: background-color .3s;
}
#header-navi .has-child.-type-02 .sub-menu {
  position: absolute;
  top: 100%;
  right: -20%;
  width: max-content;
  padding: 15px 5px;
  border-radius: 1vw;
  box-shadow: var(--shadow);
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform .2s;
  z-index: 1;
}
#header-navi .has-child.-type-02:hover .sub-menu {
  background-color: var(--bgcolor);
  animation: fadeIn 0.4s ease-in-out forwards;
}
#header-navi .has-child.-type-02 .sub-menu ul {
  display: flex;
  flex-flow: column;
}
#header-navi .has-child.-type-02 .sub-menu ul li {
  display: table;
  position: relative;
  width: max-content;
  margin: 5px 10px;
  font-size: 16px;
  text-align: center;
  transition: opacity .2s;
}
#header-navi .has-child.-type-02 .sub-menu ul li:last-child {
  border-bottom: none;
}
#header-navi .has-child.-type-02 .sub-menu ul li a {
  display: table-cell;
  width: 210px;
  height: 100%;
  padding: 15px 36px;
  font-weight: 500;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: var(--shadow);
  vertical-align: middle;
}
#header-navi .has-child.-type-02 .sub-menu ul li a:hover {
  border: 2px solid var(--maincolor);
  opacity: 1;
}
@media screen and (max-width:1500px) {
  #header-navi .has-child.-type-02 .sub-menu ul li {
    font-size: 15px;
  }
}
@media screen and (max-width:1250px) {
  #header-navi .has-child.-type-02 .sub-menu ul li a {
    font-size: 15px;
    line-height: 1.6em;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ヘッダーナビ（SP）
************************************************************/
body.is-navi-sp {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

#header-sp {
  display: none;
}
@media screen and (max-width: 1150px) {
  #header-sp {
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 999;
  }
}

#header-content-sp {
  display: table-cell;
  position: relative;
  border-radius: 100vw;
  background: #FFFFFF;
  box-shadow: var(--shadow);
  vertical-align: middle;
  z-index: 9999;
}
@media screen and (max-width: 1150px) {
  #header-content-sp .logo {
    position: relative;
    width: 250px;
    padding-left: 25px;
    margin: 8px 15px;
    z-index: 9999;
  }
  #header-content-sp .logo img {
    border-radius: 0;
  }
}
@media screen and (max-width: 750px) {
  #header-content-sp .logo {
    width: 54%;
    min-width: auto;
    padding-left: 0;
    margin: 12px 20px 8px;
  }
  #header-content-sp .logo img {
    width: 100%;
  }
}

#header-navi-sp {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #FAFAFA;
  overflow: auto;
  transition: all 0.6s;
  z-index: 999;
}
#header-navi-sp.is-active {
  display: block;
  right: 0;
  animation-name: fadeIn;
  animation-fill-mode:forwards;
  animation-duration:1s;
  overflow: auto;
}
#header-navi-sp .navi-content {
  position: absolute;
  top: 90px;
  left: 50%;
  width: 100%;
  height: calc(100vh - 90px);
  overflow-y: scroll;
  transform: translateX(-50%);
  -webkit-overflow-scrolling: touch;
}
#header-navi-sp .menu {
  display: flex;
  justify-content: space-around;
}
#header-navi-sp .menu > li {
  font-size: 16px;
}

#header-navi-sp ul li {
  position: relative;
  border: 1px solid var(--maincolor);
  border-radius: 10px;
  list-style: none;
}
#header-navi-sp ul li:first-child {
  border-top: 1px solid var(--maincolor);
}
#header-navi-sp ul li a,
#header-navi-sp .accordion-box .title {
  display: block;
  width: calc(100% - 20px);
  padding: 20px 10px;
  line-height: 1.4em;
}
#header-navi-sp ul li a {
  position: relative;
}
#header-navi-sp ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: solid 2px var(--maincolor);
  border-right: solid 2px var(--maincolor);
  transform: rotate(45deg);
}

#header-navi-sp .accordion-box .title {
  position: relative;
}
#header-navi-sp .accordion-box .title .toggle::before,
#header-navi-sp .accordion-box .title .toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  border-radius: 100vh;
  background-color: var(--maincolor);
}
#header-navi-sp .accordion-box .title .toggle::before {
  transition: transform 0.5s;
	transform: rotate(90deg);
}
#header-navi-sp .accordion-box .title .toggle::after {
	transition: .3s;
}
#header-navi-sp .accordion-box .title.is-open .toggle::before {
	transform: rotate(0deg);
}
#header-navi-sp .accordion-box .title.is-open .toggle::after {
	background-color: transparent;
}
#header-navi-sp .accordion-box .content {
  display: none;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  cursor: initial;
}
#header-navi-sp .accordion-box .content ul {
  background-color: var(--bgcolor);
}

@media screen and (max-width: 1150px) {
  #header-navi-sp .menu {
    display: block;
    padding: 20px 0 150px;
  }
  #header-navi-sp ul li {
    width: 90%;
    margin: 0 auto 15px;
  }
}

@media screen and (max-width:1099px) {
  #header-navi-sp .accordion-box .title {
    padding: 0;
    font-size: 17px;
  }
  #header-navi-sp .accordion-box .title .toggle::before,
  #header-navi-sp .accordion-box .title .toggle::after {
    right: 15px;
    width: 20px;
  }
  #header-navi-sp .accordion-box .content {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #header-navi-sp .accordion-box .content ul {
    border-radius: 0 0 10px 10px;
  }
  #header-navi-sp .accordion-box .content ul li {
    width: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
  }
  #header-navi-sp .accordion-box .content ul li a {
    position: relative;
    width: calc(100% - 76px);
    padding: 10px 26px 10px 50px;
    margin: auto;
    font-weight: normal;
    border-bottom: 1px solid var(--border-color);
  }
  #header-navi-sp .accordion-box .content ul li:last-child a {
    border-bottom: none;
  }
  #header-navi-sp .accordion-box .content ul li a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 16px;
    bottom: 0;
    width: 20px;
    height: 1px;
    margin: auto;
    background-color: var(--maincolor);
  }
}

@media screen and (max-width: 750px) {
  #header-navi-sp ul li a,
  #header-navi-sp .accordion-box .title {
    display: block;
    width: calc(100% - 45px);
    padding: 12px 30px 15px 15px;
    font-weight: normal;
    word-break: break-all;
  }
  #header-navi-sp .accordion-box .title .toggle::before,
  #header-navi-sp .accordion-box .title .toggle::after {
    right: 10px;
    width: 15px;
    height: 2px;
  }
  #header-navi-sp .accordion-box .content {
    margin: 0;
  }
}

/* ハンバーガーメニュー
************************************************************/
#navi-toggle {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 75px;
  height: 75px;
  margin: auto;
  cursor: pointer;
  z-index: 9999;
}
#navi-toggle i {
  display: inline-block;
  position: absolute;
  left: 20px;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--maincolor);
  transition: all .4s;
}
#navi-toggle i:nth-of-type(1) {
  top: 15px;
}
#navi-toggle i:nth-of-type(2) {
  top: 25px;
}
#navi-toggle i:nth-of-type(3) {
  top: 35px;
}
#navi-toggle.is-active i:nth-of-type(1) {
  top: 20px;
  left: 20px;
  width: 50%;
  transform: translateY(6px) rotate(-45deg);
}
#navi-toggle.is-active i:nth-of-type(2) {
  opacity: 0;
}
#navi-toggle.is-active i:nth-of-type(3) {
  top: 32px;
  left: 20px;
  width: 50%;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (max-width: 1150px) {
  #navi-toggle {
    top: 0;
    right: 10px;
    width: 75px;
    height: 65px;
    cursor: pointer;
    z-index: 9999;
  }
  #navi-toggle .text {
    display: block;
    position: absolute;
    left: 4px;
    right: 0;
    bottom: 10px;
    font-size: 11px;
    line-height: 1.2em;
    text-align: center;
  }
  #navi-toggle .text::before {
    content: "MENU";
    display: inline-block;
  }
}


/*===============================================================================

	フッター関連

===============================================================================*/

/* フッター
************************************************************/
#footer {
  padding: 80px 0 0;
  border-radius: 3vw;
  background-color: var(--bgbeige);
}
#footer-top {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 50px;
}
#footer-logo {
  width: 260px;
  max-width: 95%;
  margin: 0 auto 40px;
}
#footer-logo img {
  border-radius: 0;
}
#footer-address .box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width:750px) {
  #footer-address .box {
    gap: 1rem;
  }
}
#footer-address .more-button {
  margin-top: 0;
}
#footer-address .caption {
  margin: 10px 0 0;
  color: var(--maincolor);
  font-weight: bold;
}
#footer-address .caption .icon {
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  margin-right: 20px;
  border-radius: 100vw;
  background-color: #FFFFFF;
  vertical-align: super;
}
#footer-address .caption .icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 17px;
  margin: auto;
  background-image: url('../images/icon_access.svg');
  background-repeat: no-repeat;
  background-size: cover;
}
#footer-address .more-button a {
  padding: 10px 56px;
  background-color: transparent;
}
#footer-address .more-button a:hover {
  color: var(--maincolor);
  opacity: 0.6;
}
#footer-address .more-button a:hover ._icon-arrow::before {
  border-color: var(--maincolor);
}
#footer-tel {
  width: fit-content;
  margin-top: 50px;
  margin-bottom: 20px;
}
#footer-tel a {
  display: inline-flex;
  align-items: center;
  color: var(--maincolor);
  font-size: 2.5em;
  font-weight: 600;
}
#footer-tel a .icon {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 12px;
  border-radius: 100vw;
  background-color: var(--maincolor);
}
#footer-tel a .icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 21px;
  height: 28px;
  margin: auto;
  background-image: url('../images/icon_tel_w.svg');
  background-repeat: no-repeat;
  background-size: cover;
}
#footer-schedule {
  width: 600px;
  margin-bottom: 30px;
}
#footer-schedule .schedule {
  width: calc(100% - 62px);
  padding: 30px;
  border: 1px solid var(--maincolor);
  border-radius: 20px;
  background-color: #FFFFFF;
}
#footer-schedule .schedule table {
  width: 100%;
}
#footer-schedule .schedule table th,
#footer-schedule .schedule table td {
  padding: 6px 0;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}
#footer-schedule .schedule .note {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 0.9em;
}
#footer-schedule .schedule .note dt {
  padding: 5px 15px;
  margin-right: 10px;
  color: #FFFFFF;
  line-height: 1.4em;
  border: 1px solid var(--maincolor);
  border-color: var(--maincolor);
  border-radius: 100vw;
  background-color: var(--maincolor);
}
#footer-schedule .schedule .circle {
  color: #96D0BE;
  font-size: 1.1em;
}

#footer .content-right .more-button.web {
  margin-top: 10px !important;
}
#footer .content-right .more-button.web .in {
  width: 100%;
}
#footer .content-right .more-button.web a {
  font-size: 1.2em;
}
#footer .content-right .more-button.web a:hover {
  color: #FFFFFF;
  background-color: var(--maincolor);
  opacity: 0.6;
}
#footer-top .content-right .more-button a .icon::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  background-image: url('../images/icon_web.svg');
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: text-bottom;
}
#footer-copyright {
  padding: 5px 0;
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  background-color: var(--maincolor);
}
@media screen and (max-width:1366px) { 
  #footer-top .content-right {
    width: 48%;
  }
  #footer-schedule {
    width: auto;
  }
}
@media screen and (max-width:1024px) {
  #footer-tel a {
    font-size: 2.4rem;
  }
  #footer-schedule {
    width: 100%;
  }
}
@media screen and (max-width:750px) {
  #footer {
    padding: 60px 0 0;
    border-radius: 5vw;
  }
  #footer-top {
    display: block;
    margin: 0 auto 50px;
  }
  #footer-top .content-left {
    margin-bottom: 50px;
  }
  #footer-top .content-left,
  #footer-top .content-right {
    width: 100%;
  }
  #footer-logo {
    width: 60%;
    margin: 0 auto 30px;
  }
  #footer-tel {
    width: 100%;
    margin-top: 30px;
  }
  #footer-tel a {
    font-size: 2rem;
  }
  #footer-tel a .icon {
    margin-right: 10px;
  }
  #footer-schedule .schedule {
    width: calc(100% - 40px);
    padding: 20px;
  }
  #footer-schedule .schedule .note dt {
    font-size: 13px;
  }
  #footer-copyright {
    padding: 5px 10px;
    font-size: 10px;
    line-height: 1.4em;
  }
}


/* 固定CTA
************************************************************/
#fixed-cta {
  position: fixed;
  right: 60px;
  bottom: 20px;
  z-index: 999;
}
#fixed-cta ul {
  display: flex;
  align-items: center;
}
#fixed-cta ul li {
  margin-right: 20px;
}
#fixed-cta ul li:last-child {
  margin-right: 0;
}
#fixed-cta ul li a {
  display: flex;
  align-items: center;
  padding: 16px 36px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 100vw;
}
#fixed-cta ul li.tel a {
  color: #FFFFFF;
  font-size: 28px;
  background-color: var(--accentcolor);
}
#fixed-cta ul li.tel a:hover {
  background-color: var(--accentcolor-hover);
  opacity: 1;
}
#fixed-cta ul li.tel a .icon {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
  margin-right: 12px;
  border-radius: 100vw;
  background-color: #FFFFFF;
}
#fixed-cta ul li.tel a .icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 17px;
  margin: auto;
  background-image: url('../images/icon_tel.svg');
  background-repeat: no-repeat;
  background-size: cover;
}
#fixed-cta ul li.web {
  border-radius: 100vw;
  background-color: var(--maincolor);
}
#fixed-cta ul li.web a {
  color:  #FFFFFF;
}
#fixed-cta ul li.web a:hover {
  background-color: var(--maincolor-hover);
  opacity: 1;
}
#fixed-cta ul li.web a .icon::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  background-image: url('../images/icon_web.svg');
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: text-bottom;
}
@media screen and (max-width:1100px) {
  #fixed-cta {
    right: 20px;
  }
}
@media screen and (max-width:750px) {
  #fixed-cta {
    right: auto;
    bottom: 0;
    width: 100%;
    padding: 0;
    box-shadow: unset;
    background-color: transparent;
    z-index: 9999;
  }
  #fixed-cta ul {
    width: 100%;
  }
  #fixed-cta ul li {
    width: 50%;
    height: 50px;
    margin-right: 0;
  }
  #fixed-cta ul li a,
  #fixed-cta ul li.tel a,
  #fixed-cta ul li.web {
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 0 !important;
  }
  #fixed-cta ul li.tel {
    border: 2px solid var(--accentcolor);
  }
  #fixed-cta ul li.web {
    border: 2px solid var(--maincolor);
  }
  #fixed-cta ul li a {
    justify-content: center;
    padding: 14px 5px;
    color: #FFFFFF;
  }
  #fixed-cta ul li a {
    height: -webkit-fill-available;
  }
  #fixed-cta ul li.tel a .icon,
  #fixed-cta ul li.web a .icon::before {
    margin-right: 6px;
  }
}


/*===============================================================================

	コンテンツエリア

===============================================================================*/

/* セクション
************************************************************/
.section {
  margin-bottom: 150px;
}
.section-inner {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}
.section p {
  margin-bottom: 30px;
}
.section p:last-child {
  margin-bottom: 0;
}
.section p a:hover {
  opacity: 0.6;
}
@media screen and (max-width:750px) {
  .section {
    margin-bottom: 90px;
  }
  .section p {
    margin-bottom: 20px;
    text-align: left;
  }
}

/* セクションタイトル
************************************************************/
.section-title {
  position: relative;
  text-align: center;
}
.section-title .en {
  display: block;
  margin-bottom: 15px;
  color: var(--accentcolor);
  font-size: 30px;
  font-weight: 100;
}
@media screen and (max-width:750px) {
  .section-title .en {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.3;
  }
}

/* 見出し
************************************************************/
h2.style-01 {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  margin-bottom: 80px;
  font-size: clamp(32px, 6vw, 45px);
  font-weight: normal;
  font-family: var(--font);
  line-height: 1.4em;
  letter-spacing: 0.12em;
  z-index: 2;
}
h2.style-01::before {
  content: "";
  position: absolute;
  top: 34%;
  left: -16px;
  width: 61px;
  height: 49px;
  background-image: url('../images/ttl_accessory.svg');
  background-size: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width:750px) {
  h2.style-01 {
    margin-bottom: 40px;
  }
}

/* ボタン
************************************************************/
.more-button {
  display: flex;
  margin-top: 25px;
}
.more-button.-center {
  justify-content: center;
}
.more-button.-right {
  justify-content: end;
}
.more-button .in {
  text-align: center;
}
.more-button a {
  display: block;
  position: relative;
  padding: 14px 56px;
  color: #FFFFFF;
  font-size: 16px;
  font-family: var(--normalfont);
  border: 2px solid var(--maincolor);
  border-radius: 100vh;
  background-color: var(--maincolor);
}
.more-button a ._icon-arrow::before {
  border-color: #FFFFFF;
}

.more-button a:hover {
  color: var(--maincolor);
  border-color: var(--maincolor);
  border-radius: 100vh;
  background-color: transparent;
}
.more-button a:hover ._icon-arrow::before {
  border-color: var(--maincolor);
}

.more-button.-border a {
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  border-radius: 100vh;
  background-color: #FFFFFF;
}
.more-button.-border a:hover {
  color: #FFFFFF;
  background-color: var(--maincolor);
  opacity: 1;
}
.more-button.-border a ._icon-arrow::before {
  border-color: var(--maincolor);
}
.more-button.-border a:hover ._icon-arrow::before {
  border-color: #FFFFFF;
}

@media screen and (max-width:750px) {
  .more-button {
    display: block;
    margin-top: 30px;
  }
  .more-button .in {
    width: 100%;
  }
  .more-button a {
    font-size: 16px !important;
    padding: 8px 40px;
  }
}