@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,500;0,700;1,500;1,600;1,700&family=Noto+Sans+JP:wght@300;400;500;700&family=Roboto:wght@400;500;700&display=swap');
:root {
  --color-green       : #00482D;
  --color-darkgreen   : #004129;
  --color-pink        : #DF8293;
  --color-cream       : #FDFCF2;
  --color-yellow      : #F1E54C;
  --color-lightblue   : #85C6CE;

  --font-sourceHan    : source-han-sans-japanese, sans-serif;

  --transition        : .3s ease;
  
  interpolate-size    : allow-keywords;
}


/* Reset & Base */
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%;
  font: inherit;
  vertical-align: baseline;
}
html.--hidden,
body.--hidden {
  overflow: hidden;
}
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}
body {
  margin: 0;
  width: 100%;
  background: var(--color-darkgreen);
  color: var(--color-green);
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: .08em;
  font-weight: 500;
  box-sizing: border-box;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  position: relative;
  overflow: hidden;
  background: var(--color-green);
}
main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border: 50px solid var(--color-darkgreen);
  border-bottom: none;
  box-sizing: border-box;
  pointer-events: none;
}
iframe {
  width: 25%;
}
div, h1, h2, h3, h4, h5, h6, p, li, dl, dt, dd, th, td, article, header, footer, nav, span, a {
  box-sizing: border-box;
}
li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  line-height: 100%;
  vertical-align: bottom;
}
em {
  font-style: normal;
}
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  font-feature-settings: "palt";
}
p, li, td, th, dt, dd {
  margin: 0;
  word-wrap: break-word;
  font-feature-settings: "palt";
}
table {
  width: 100%;
}
th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  word-break: break-all;
}
ul, ol {
  padding: 0;
  margin: 0;
}
::selection {
  background: var(--color-pink);
  color: #fff;
}
/*	font	*/
.f-centuryGothic {
  font-family: 'century-gothic', 'Josefin Sans', sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: calc(15 / 390 * 100vw);
  }
  main::before {
    border-width: calc(15 / 390 * 100vw);
  }
}
/*	PC・SP 表示指定	*/
@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}


/* animation */
@keyframes imgFadeIn {
  0% {
    opacity: 0;
    margin-top: 2%;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes txtFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imgFloating {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes imgFloating02 {
  0% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


/* js */
.js-scrollanime-element {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-scrollanime-element.--show {
  opacity: 1;
  transform: translateY(0);
}


/* section */
.section-heading img {
  width: calc(500 / 1920 * 100vw);
  margin: 0 auto;
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}
.section-loop-image {
  display: flex;
  animation: loop 50s linear infinite;
  overflow: hidden;
}
.section-loop-image img {
  width: 2640px;
  max-width: none;
}
.section-loop-image img + img {
  margin-left: 10px;
}
.section-label {
  position: absolute;
  left: -80px;
  top: calc(50% - 130px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 64px;
  background: url(../img/bg_label_01.svg) center center / contain no-repeat;
  color: #fff;
  font-size: 15px;
  transform: rotate(90deg);
}
.section-label.--right {
  left: auto;
  right: -80px;
  transform: rotate(-90deg);
}
.section-blink-image img {
  position: absolute;
  left: 50%;
  bottom: 130px;
  width: 1300px;
  max-width: none;
  transform: translateX(-50%);
}
.section-blink-image img:first-child {
  animation: blink 1.5s cubic-bezier(0, 0.55, 0.45, 1) infinite;
}
.section-blink-image img:nth-child(2) {
  animation: blink 1.5s cubic-bezier(0, 0.55, 0.45, 1) infinite;
  animation-delay: .5s;
}
.section-button {
  position: relative;
  display: block;
  width: 265px;
  margin: 0 0 0 auto;
  padding: 10px 15px 12px 10px;
  background: var(--color-pink);
  border-radius: 100vmax;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-sourceHan);
  letter-spacing: 0.1em;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.section-button::before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  width: 15px;
  height: 10px;
  background: url(../img/icn_arrow_01.svg) center center / cover no-repeat;
}
.section-button span {
  position: absolute;
  left: calc((var(--n) - 1) * 25%);
  z-index: -1;
  width: 25%;
  height: 100%;
  background: var(--color-lightblue);
  border-radius: 50%;
  transform: translateY(150%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
}
.section-button:hover span {
  transform: translateY(0) scale(2);
}
.section-button span:nth-child(1) {
  --n: 1;
}
.section-button span:nth-child(2) {
  --n: 2;
}
.section-button span:nth-child(3) {
  --n: 3;
}
.section-button span:nth-child(4) {
  --n: 4;
}
@media screen and (max-width: 768px) {
  .section-heading img {
    width: calc(200 / 390 * 100vw);
  }
  .section-inner {
    padding: 0;
  }
  .section-loop-image img {
    width: calc(1000 / 390 * 100vw);
  }
  .section-loop-image img + img {
    margin-left: calc(4 / 390 * 100vw);
  }
  .section-label {
    display: none;
  }
  .section-label.--right {
    right: calc(-40 / 390 * 100vw);
  }
  .section-blink-image img {
    bottom: calc(45 / 390 * 100vw);
    width: calc(570 / 390 * 100vw);
  }
  .section-button {
    width: calc(250 / 390 * 100vw);
    height: calc(45 / 390 * 100vw);
    margin: 0 auto;
    padding: calc(8 / 390 * 100vw) calc(18 / 390 * 100vw) calc(12 / 390 * 100vw) calc(10 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
  .section-button::before {
    top: calc(50% - calc(5 / 390 * 100vw));
    right: calc(15 / 390 * 100vw);
    width: calc(15 / 390 * 100vw);
    height: calc(10 / 390 * 100vw);
  }
}


/* logo */
.header {
  padding: 50px 50px 0;
}
.header-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  background: var(--color-pink);
  border-radius: 0 0 30px 30px;
}
.header-logo img {
  width: 150px;
  margin-top: .15em;
}
@media screen and (max-width: 768px) {
  .header {
    display: none;
  }
  .header-logo {
    width: calc(178 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    border-radius: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0 0;
  }
  .header-logo img {
    width: calc(116 / 390 * 100vw);
  }
}


/* visual */
.visual {
  position: relative;
  max-width: 1750px;
  height: calc(100vh - 140px);
  max-height: 940px;
  margin: -50px auto 0;
}
.visual.--show .visual-text {
  animation: txtFadeIn 1s ease-in-out forwards;
}
.visual.--show .visual-bg div {
  animation: imgFadeIn .8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: .3s;
}
.visual.--show .visual-bg div:first-child {
  animation-delay: .6s;
}
.visual.--show .visual-bg div:nth-child(2) {
  animation-delay: .9s;
}
.visual img {
  margin: 0 auto;
  object-position: center center;
}
.visual-text {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  width: calc(100% - 100px);
  height: 88%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.visual-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.visual-bg div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.visual-bg div:first-child img {
  animation: imgFloating 1.5s ease-in-out infinite alternate-reverse;
  animation-delay: 1.5s;
}
.visual-bg div:nth-child(2) {
  z-index: 2;
}
.visual-bg div:nth-child(2) img {
  animation: imgFloating02 1.5s ease-in-out infinite alternate-reverse;
  animation-delay: 1.5s;
}
.visual-bg img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .visual {
    width: calc(100% - calc(30 / 390 * 100vw));
    height: calc(700 / 390 * 100vw);
    max-height: none;
    margin: calc(56 / 390 * 100vw) auto 0;
  }
  .visual-text {
    top: 50%;
    height: auto;
    width: 100%;
  }
  .visual-bg div {
    top: 0;
    left: 0;
    transform: translate(0);
  }
  .visual-bg img {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .visual {
    height: calc(100svh - calc(70 / 390 * 100vw));
    min-height: calc(600 / 390 * 100vw);
  }
}


/* nav */
.nav {
  position: absolute;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 50px;
  transform: translateX(-50%);
}
.nav.--fixed {
  top: 0;
  max-width: none;
  padding: 8px 50px 0;
  background: rgba(0, 65, 41, .9);
}
.nav.--fixed .header-logo {
  display: flex;
}
.nav .header-logo,
.nav li a {
  border-radius: 20px 20px 0 0;
}
.nav-contents {
  flex: 1;
}
.nav ul {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.nav li {
  width: 14.28571%;
  max-width: 140px;
}
.nav li + li {
  margin-left: .5em;
}
.nav li a {
  position: relative;
  display: block;
  padding: .9em 0 .65em;
  background: var(--color-cream);
  border-bottom: 4px solid #595757;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
  text-align: center;
  transition: color var(--transition);
}
.nav li a::before,
.nav li a::after {
  content: '';
  position: absolute;
}
.nav li a::before {
  top: .5em;
  right: 1em;
  width: 15px;
  height: 15px;
  background: url(../img/icn_shine_01.svg) center center / cover no-repeat;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav li a::after {
  left: 0;
  bottom: -4px;
  width: 0;
  height: 4px;
  background: var(--color-pink);
  transition: width .4s cubic-bezier(0.42, 0, 0.58, 1);
}
.nav li a:hover {
  color: var(--color-pink);
}
.nav li a:hover::after {
  width: 100%;
}
.nav li a:hover::before {
  opacity: 1;
}
.nav .header-logo {
  margin: 0 10em 0 0;
  display: none;
}
.nav button {
  display: none;
}
@media screen and (max-width: 1280px) {
  .nav .header-logo {
    margin-right: 3em;
  }
}
@media screen and (max-width: 1280px) {
  .nav.--fixed {
    padding: 8px 50px;
    background: var(--color-darkgreen);
  }
  .nav.--fixed .nav-contents {
    position: fixed;
    top: 76px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100dvh - 76px);
    padding: 0 50px 50px;
    overflow-y: auto;
    background: var(--color-darkgreen);
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .nav.--fixed .nav-contents.--show {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition), visibility var(--transition);
  }
  .nav.--fixed .nav-contents-inner {
    display: table;
    width: 100%;
    height: 100%;
    padding: 10%;
    background: var(--color-green);
  }
  .nav.--fixed .nav-contents-list {
    display: table-cell;
  }
  .nav.--fixed ul {
    position: relative;
    display: block;
    width: 400px;
    margin: 0 auto;
    padding: 80px 0 55px;
  }
  .nav.--fixed ul::before,
  .nav.--fixed ul::after {
    content: '';
    position: absolute;
  }
  .nav.--fixed ul::before {
    top: -30px;
    left: calc(50% - 200px);
    width: 400px;
    height: 100px;
    background: url(../img/deco_nav_01.svg) 0 0 / contain no-repeat;
  }
  .nav.--fixed ul::after {
    right: -85px;
    bottom: -60px;
    width: 100px;
    height: 120px;
    background: url(../img/deco_nav_02.png) 0 0 / contain no-repeat;
  }
  .nav.--fixed li {
    width: 100%;
    max-width: none;
  }
  .nav.--fixed li + li {
    margin: 1.2em 0 0;
  }
  .nav.--fixed button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    background: var(--color-pink);
    border-radius: 100vmax;
  }
  .nav button span {
    width: 57.5%;
    height: 3px;
    background: #fff;
    border-radius: 100vmax;
  }
  .nav button.--show span:first-child {
    transform: rotate(40deg);
  }
  .nav button.--show span:nth-child(2) {
    display: none;
  }
  .nav button.--show span:nth-child(3) {
    transform: rotate(-40deg);
    margin-top: -3px;
  }
  .nav button span + span {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    padding: calc(15 / 390 * 100vw);
  }
  .nav .header-logo,
  .nav li a {
    border-radius: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0 0;
  }
  .nav .header-logo {
    height: calc(40 / 390 * 100vw);
  }
  .nav li a {
    border-bottom-width: calc(4 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
  .nav.--fixed { 
    padding: calc(8 / 390 * 100vw) calc(15 / 390 * 100vw);
  }
  .nav.--fixed .nav-contents {
    top: calc(56 / 390 * 100vw);
    height: calc(100dvh - calc(56 / 390 * 100vw));
    padding: 0 calc(15 / 390 * 100vw) calc(15 / 390 * 100vw);
  }
  .nav.--fixed ul {
    top: calc(25 / 390 * 100vw);
    width: calc(230 / 390 * 100vw);
    padding: calc(80 / 390 * 100vw) 0 calc(55 / 390 * 100vw);
  }
  .nav.--fixed ul::before {
    top: 0;
    left: calc(50% - calc(150 / 390 * 100vw));
    width: calc(300 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
  }
  .nav.--fixed ul::after {
    right: calc(-55 / 390 * 100vw);
    bottom: 0;
    width: calc(55 / 390 * 100vw);
    height: calc(85 / 390 * 100vw);
  }
  .nav.--fixed button {
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
}


/* concept */
.concept {
  position: relative;
  padding-top: 160px;
}
.concept .section-inner {
  max-width: 1320px;
  padding: 0 60px;
}
.concept-message {
  position: relative;
  z-index: 1;
  padding: 130px 40px 150px;
  background: url(../img/bg_concept_01.png) center center / 100% 100% no-repeat;
  text-align: center;
}
.concept-message::before {
  content: '';
  position: absolute;
  top: -170px;
  right: 0;
  width: 24%;
  height: 310px;
  background: url(../img/deco_concept_01.png) right bottom / contain no-repeat;
}
.concept-message::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: -220px;
  right: -13%;
  width: 50%;
  height: 410px;
  background: url(../img/deco_about_01.png) right top / contain no-repeat;
}
.concept-message-heading {
  margin-bottom: 50px;
  font-size: 34px;
  font-weight: 900;
  font-family: var(--font-sourceHan);
  letter-spacing: .2em;
  line-height: 1;
}
.concept-message-heading span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.concept-message-heading span::after {
  content: '';
  position: absolute;
  left: -15px;
  bottom: -5px;
  z-index: -1;
  width: 0;
  height: 18px;
  background: var(--color-yellow);
  transition: width .8s cubic-bezier(0.5, 1, 0.89, 1);
  transition-delay: .5s;
}
.concept-message.--show .concept-message-heading span::after {
  width: calc(100% + 20px);
}
.concept-message p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .1em;
}
.concept-message p span {
  display: inline-block;
  margin-left: -.2em;
}
.concept .section-loop-image {
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .concept-message-heading {
    line-height: 1.6;
  }
  .concept-message-heading br {
    display: block;
  }
  .concept-message-heading span::before {
    content: '';
    position: absolute;
    left: 16%;
    top: 32px;
    z-index: -1;
    width: 0;
    height: 18px;
    background: var(--color-yellow);
    transition: width .8s cubic-bezier(0.5, 1, 0.89, 1);
    transition-delay: .5s;
  }
  .concept-message.--show .concept-message-heading span::before {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .concept {
    width: calc(100% - calc(30 / 390 * 100vw));
    padding-top: calc(130 / 390 * 100vw);
    margin: calc(-70 / 390 * 100vw) auto 0;
  }
  .concept .section-inner {
    padding: 0;
  }
  .concept-message {
    margin-top: calc(-10 / 390 * 100vw);
    padding: calc(70 / 390 * 100vw) calc(10 / 390 * 100vw) calc(80 / 390 * 100vw);
    background-size: cover;
  }
  .concept-message::before {
    top: calc(-40 / 390 * 100vw);
    right: calc(-10 / 390 * 100vw);
    width: calc(125 / 390 * 100vw);
    height: calc(125 / 390 * 100vw);
  }
  .concept-message::after {
    display: none;
  }
  .concept-message-heading {
    margin-bottom: calc(25 / 390 * 100vw);
    font-size: calc(22 / 390 * 100vw);
  }
  .concept-message-heading span::before {
    top: calc(18 / 390 * 100vw);
    height: calc(15 / 390 * 100vw);
  }
  .concept-message-heading span::after {
    left: calc(-8 / 390 * 100vw);
    bottom: 0;
    height: calc(15 / 390 * 100vw);
  }
  .concept-message.--show .concept-message-heading span::after {
    width: calc(100% + calc(10 / 390 * 100vw));
  }
  .concept-message p {
    margin-top: calc(10 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
  .concept .section-loop-image {
    display: none;
  }
}


/* about */
.about {
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
}
.about .section-label {
  top: 450px;
}
.about-inner {
  width: 78.125%;
  max-width: 1500px;
  margin: -360px auto 0;
  padding: 400px 40px 0;
  background-color: #f7f7f7;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #E0EEF1 calc(100% - 1px)),linear-gradient(90deg, transparent calc(100% - 1px), #E0EEF1 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center bottom;
  border-radius: 600px 600px 0 0;
}
.about .section-inner {
  max-width: 1000px;
  padding: 0;
}
.about-overview {
  position: relative;
  margin-top: 60px;
  padding: 70px 70px 50px;
  background: #fff;
  border: 3px solid var(--color-green);
  border-radius: 30px;
}
.about-overview.--show p span::after {
  width: 100%;
}
.about-overview::after {
  content: '';
  position: absolute;
  top: -170px;
  right: -20px;
  width: 20%;
  height: 215px;
  background: url(../img/deco_about_05.png) right bottom / contain no-repeat;
}
.about-overview-heading {
  position: absolute;
  top: -40px;
  left: 20px;
  display: inline-block;
  padding: .6em 1em;
  background: var(--color-green);
  border-radius: 20px 20px 0 0;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
  color: #fff;
  letter-spacing: .05em;
}
.about-overview p {
  font-size: 20px;
  line-height: 2;
}
.about-overview p strong {
  color: var(--color-pink);
  font-weight: 700;
}
.about-overview p span {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 0 .2em;
  padding: 0 .5em;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
.about-overview p span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: var(--color-pink);
  transition: width .8s cubic-bezier(0.5, 1, 0.89, 1);
}
.about-overview .note {
  margin-top: 1em;
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: 0;
    padding-top: 0;
  }
  .about .section-label {
    top: calc(110 / 390 * 100vw);
  }
  .about-inner {
    width: 100%;
    margin: calc(-70 / 390 * 100vw) auto 0;
    padding: calc(90 / 390 * 100vw) calc(35 / 390 * 100vw) 0;
    border-radius: 0;
  }
  .about-overview {
    margin-top: calc(40 / 390 * 100vw);
    padding: calc(30 / 390 * 100vw) calc(15 / 390 * 100vw) calc(25 / 390 * 100vw);
    border-radius: calc(15 / 390 * 100vw);
    border-width: calc(3 / 390 * 100vw);
  }
  .about-overview::after {
    top: calc(-55 / 390 * 100vw);
    right: calc(-5 / 390 * 100vw);
    width: calc(80 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
  }
  .about-overview-heading {
    top: calc(-25 / 390 * 100vw);
    left: calc(10 / 390 * 100vw);
    padding: .8em 2em;
    border-radius: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0 0 ;
    font-size: calc(12 / 390 * 100vw);
  }
  .about-overview p {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: normal;
  }
  .about-overview .note {
    font-size: calc(12 / 390 * 100vw);
    text-align: left;
  }
}


/* seminar */
.seminar {
  position: relative;
  overflow: hidden;
}
.seminar .section-inner {
  position: relative;
  max-width: 1000px;
  padding: 0;
}
.seminar .section-inner::before,
.seminar .section-inner::after {
  content: '';
  position: absolute;
  z-index: 1;
}
.seminar .section-inner::before {
  top: 30px;
  right: -20px;
  width: 24.6%;
  height: 215px;
  background: url(../img/deco_about_03.png) right top / contain no-repeat;
}
.seminar .section-inner::after {
  right: -40px;
  bottom: -70px;
  width: 25.8%;
  height: 275px;
  background: url(../img/deco_about_04.png) right bottom / contain no-repeat;
}
.seminar-inner {
  width: 78.125%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px 330px;
  background-color: #f7f7f7;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #E0EEF1 calc(100% - 1px)),linear-gradient(90deg, transparent calc(100% - 1px), #E0EEF1 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center top;
}
.seminar-heading img {
  width: calc(600 / 1920 * 100vw);
}
.seminar-contents {
  position: relative;
  margin-bottom: 10px;
  padding: 70px 100px;
  background: var(--color-green);
  border-radius: 0 20px 20px 0;
}
.seminar-contents::before,
.seminar-contents::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.seminar-contents::after {
  top: 7px;
  left: -10px;
  width: calc(100% - 30px);
  height: 100%;
  border-left: 3px solid var(--color-green);
  border-bottom: 3px solid var(--color-green);
}
.seminar-contents::before {
  top: 50%;
  left: -30px;
  width: 60px;
  height: calc(100% - 30px);
  background: url(../img/deco_about_02.png) top left / 100% repeat-y;
  transform: translateY(-50%);
}
.seminar-contents-heading {
  margin: 24px 0;
  padding: .6em;
  background: #fff;
  border-radius: 100vmax;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
  text-align: center;
  letter-spacing: .1em;
}
.seminar-contents-heading:nth-of-type(1) {
  margin-top: 35px;
}
.seminar-contents-heading:nth-of-type(3) + p,
.seminar-contents-heading:nth-of-type(3) + p + p {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.seminar-contents-heading:nth-of-type(3) + p span,
.seminar-contents-heading:nth-of-type(3) + p + p span {
  width: 160px;
  font-size: 20px;
}
.seminar-contents p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
}
.seminar-contents p.--show span::after {
  width: 100%;
}
.seminar-contents p > span {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 0 .2em;
  padding: 0 .2em;
  color: var(--color-green);
  font-weight: 700;
  line-height: 1.3;
}
.seminar-contents p > span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: var(--color-yellow);
  transition: width .8s cubic-bezier(0.5, 1, 0.89, 1);
}
.seminar-contents p strong {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.seminar-contents .note {
  margin-top: .5em;
  color: var(--color-yellow);
  font-size: 16px;
}
.seminar-contents p:last-child strong {
  font-size: 30px;
}
.seminar-contents .link {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .seminar .section-inner::before {
    top: calc(10 / 390 * 100vw);
    right: calc(-10 / 390 * 100vw);
    width: calc(100 / 390 * 100vw);
    height: calc(100 / 390 * 100vw);
  }
  .seminar .section-inner::after {
    right: calc(-35 / 390 * 100vw);
    bottom: calc(-56 / 390 * 100vw);
    width: calc(120 / 390 * 100vw);
    height: calc(120 / 390 * 100vw);
  }
  .seminar-inner {
    width: 100%;
    padding: calc(30 / 390 * 100vw) calc(35 / 390 * 100vw) calc(130 / 390 * 100vw) calc(40 / 390 * 100vw);
    border-radius: 0;
  }
  .seminar-heading img {
    width: calc(220 / 390 * 100vw);
  }
  .seminar-contents {
    margin-bottom: calc(5 / 390 * 100vw);
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
    border-radius: 0 calc(15 / 390 * 100vw) calc(15 / 390 * 100vw) 0;
  }
  .seminar-contents::after {
    top: calc(3 / 390 * 100vw);
    left: calc(-5 / 390 * 100vw);
    width: calc(100% - calc(10 / 390 * 100vw));
    border-width: calc(3 / 390 * 100vw);
  }
  .seminar-contents::before {
    left: calc(-10 / 390 * 100vw);
    width: calc(20 / 390 * 100vw);
  }
  .seminar-contents-heading {
    margin: calc(30 / 390 * 100vw) 0 calc(15 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .seminar-contents-heading:nth-of-type(1) {
    margin-top: calc(25 / 390 * 100vw);
  }
  .seminar-contents-heading:nth-of-type(3) + p,
  .seminar-contents-heading:nth-of-type(3) + p + p {
    font-size: calc(18 / 390 * 100vw);
  }
  .seminar-contents-heading:nth-of-type(3) + p span,
  .seminar-contents-heading:nth-of-type(3) + p + p span {
    width: calc(130 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
  .seminar-contents p {
    font-size: calc(15 / 390 * 100vw);
  }
  .seminar-contents p strong {
    font-size: calc(24 / 390 * 100vw);
  }
  .seminar-contents .note {
    font-size: calc(12 / 390 * 100vw);
  }
  .seminar-contents p:last-child strong {
    font-size: calc(18 / 390 * 100vw);
  }
}


/* time table */
.timetable {
  margin-top: -100px;
  padding: 140px 0 530px;
  position: relative;
}
.timetable::before,
.timetable::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
}
.timetable::before {
  top: 1px;
  height: 100px;
  background: url(../img/deco_timetable_01.svg) center top / cover no-repeat;
}
.timetable::after {
  bottom: 0;
  height: 465px;
  background: url(../img/bg_timetable_03.svg) center center / contain no-repeat;
}
.timetable-heading {
  position: relative;
}
.timetable-heading::after {
  content: '';
  position: absolute;
  top: -200px;
  right: 0%;
  width: 41%;
  height: 580px;
  background: url(../img/deco_timetable_03.png) right top / 100% no-repeat;
}
.timetable-inner {
  position: relative;
}
.timetable-inner::before,
.timetable-inner::after {
  content: '';
  position: absolute;
  top: 70px;
  width: 360px;
  height: 2050px;
}
.timetable-inner::before {
  left: 4%;
  background: url(../img/bg_timetable_01.png) 0 0 / 100% no-repeat;
}
.timetable-inner::after {
  right: 0;
  background: url(../img/bg_timetable_02.png) 0 0 / 100% no-repeat;
}
.timetable .section-inner {
  position: relative;
  z-index: 1;
}
.timetable-date {
  position: relative;
  margin-top: 30px;
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
  text-align: center;
  letter-spacing: .05em;
}
.timetable-date p {
  position: relative;
  display: inline-block;
}
.timetable-date p::before {
  content: '';
  position: absolute;
  top: calc(50% - 30px);
  left: -80px;
  width: 70px;
  height: 70px;
  background: url(../img/deco_timetable_02.png) center center / 100% no-repeat;
}
.timetable-date span:nth-child(1) {
  font-size: 25px;
}
.timetable-date span:nth-child(2) {
  display: inline-block;
  margin-left: .5em;
  font-size: 35px;
}
.timetable-schedule {
  margin-top: 40px;
  line-height: 1.5;
}
.timetable-schedule table {
  table-layout: fixed;
  border-spacing: 0;
}
.timetable-schedule table tr:first-child .time {
  height: auto;
}
.timetable-schedule table tr:last-child td:last-child {
  border-radius: 0 0 30px 0;
}
.timetable-schedule table tr:nth-child(even) .time {
  border-width: 2px;
  font-weight: 300;
}
.timetable-schedule table tr:nth-child(even) .time::before {
  font-size: 20px;
}
.timetable-schedule table tr:last-child .time {
  border-bottom: none;
}
.timetable-schedule table tr:last-child .time::before {
  display: none;
}
.timetable-schedule table tr:last-child .time span {
  opacity: 0;
}
.timetable-schedule table th,
.timetable-schedule table td {
  padding: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.timetable-schedule table td {
  height: 70px;
  background: #E6EDEA;
  font-weight: 700;
}
.timetable-schedule table td.--d {
  padding: 5px 10px;
}
.timetable-schedule table td.--bd {
  border-right: 2px solid #fff;
}
.timetable-schedule table td strong,
.timetable-schedule-block-contents strong {
  display: block;
  margin-bottom: .1em;
  font-size: 16px;
  letter-spacing: normal;
}
.timetable-schedule table td strong span,
.timetable-schedule-block-contents strong span {
  margin-left: .3em;
  font-size: 65%;
}
.timetable-schedule table td strong + span,
.timetable-schedule-block-contents strong + span {
  display: block;
  color: var(--color-pink);
}
.timetable-schedule table td strong + span {
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 1px solid var(--color-green);
  font-size: 12px;
}
.timetable-schedule table td p,
.timetable-schedule-block-contents p {
  margin-top: .2em;
  color: #595757;
  font-size: 80%;
  font-weight: 500;
}
.timetable-schedule-block-contents strong + span {
  margin-bottom: .2em;
}
.timetable-schedule table td strong + span.--b,
.timetable-schedule-block-contents strong + span.--b {
  color: #ED8CE9;
}
.timetable-schedule table td strong + span.--c,
.timetable-schedule-block-contents strong + span.--c {
  color: #7F5CF4;
}
.timetable-schedule table td strong + span.--d,
.timetable-schedule-block-contents strong + span.--d {
  color: #67D5DE;
}
.timetable-schedule table td img,
.timetable-schedule-block-contents img {
  width: 70%;
  margin: .6em auto 0;
}
.timetable-schedule table .room,
.timetable-schedule-block-heading {
  height: auto;
  padding: 2px 10px 8px;
  background: #ED7E95;
  border-top: 2px solid #fff;
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  font-family: var(--font-sourceHan);
  text-align: center;
  line-height: 1;
}
.timetable-schedule table .room.--b,
.timetable-schedule-block-heading.--b {
  background: #ED8CE9;
}
.timetable-schedule table .room.--c,
.timetable-schedule-block-heading.--c {
  background: #7F5CF4;
}
.timetable-schedule table .room.--d,
.timetable-schedule-block-heading.--d {
  background: #67D5DE;
  border-right: 2px solid #fff;
  border-radius: 0 30px 0 0;
}
.timetable-schedule table .room strong,
.timetable-schedule-block-heading strong {
  display: inline-block;
  margin-left: .2em;
  font-weight: 700;
  font-size: 50px;
}
.timetable-schedule table .time {
  position: relative;
  width: 85px;
  padding: 30px 15px 10px 20px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background: rgba(0, 72, 45, .7);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-sourceHan);
  vertical-align: bottom;
  letter-spacing: normal;
}
.timetable-schedule table .time.--h90 {
  height: 90px;
}

/*20260203 高さ変更*/
.timetable-schedule table .time.--h120 {
/*  height: 120px;*/
	height: 70px;
}
.timetable-schedule table .time::before {
  content: '⚫︎';
  position: absolute;
  left: -.5em;
  bottom: 0;
  z-index: 1;
  font-size: 24px;
  line-height: 0;
}
.timetable-schedule table .time span {
  display: inline-block;
  transform: rotate(-8deg);
}
.timetable-schedule table .on {
  height: auto;
  background: #fff;
  font-size: 12px;
}
.timetable-schedule table .on.--bd {
  border-left: 2px solid #E6EDEA;
}
.timetable-schedule-button {
  position: relative;
  display: block;
  max-width: 220px;
  margin: .6em auto 0;
  padding: .35em;
  background: #ED7E95;
  border-radius: 100vmax;
  font-weight: 700;
  font-family: var(--font-sourceHan);
  color: #fff;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.35s ease;
}
.timetable-schedule-button:before,
.timetable-schedule-button:after {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: inherit;
}
.timetable-schedule-button:before {
  background: #ffffff;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(100%);
}
.timetable-schedule-button:after {
  border: 3px solid #ED7E95;
}
.timetable-schedule-button:hover:before {
  opacity: .4;
  transform: translateY(0%);
}
.timetable-schedule-button.--b {
  background: #ED8CE9;
}
.timetable-schedule-button.--b::after {
  border-color: #ED8CE9;
}
.timetable-schedule-button.--c {
  background: #7F5CF4;
}
.timetable-schedule-button.--c::after {
  border-color: #7F5CF4;
}
.timetable-schedule-button.--d {
  background: #67D5DE;
}
.timetable-schedule-button.--d::after {
  border-color: #67D5DE;
}
@media screen and (max-width: 768px) {
  .timetable {
    margin-top: calc(-70 / 390 * 100vw);
    padding: calc(80 / 390 * 100vw) 0 calc(160 / 390 * 100vw);
  }
  .timetable::before {
    top: calc(32 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .timetable::after {
    height: calc(140 / 390 * 100vw);
  }
  .timetable-heading::after {
    top: calc(-120 / 390 * 100vw);
    width: calc(170 / 390 * 100vw);
    height: calc(200 / 390 * 100vw);
    background-position: right center;
  }
  .timetable-inner::before,
  .timetable-inner::after {
    display: none;
  }
  .timetable-date {
    margin-top: calc(15 / 390 * 100vw);
    font-size: calc(34 / 390 * 100vw);
    padding-left: .8em;
  }
  .timetable-date p::before {
    top: calc(50% - calc(20 / 390 * 100vw));
    left: calc(-45 / 390 * 100vw);
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .timetable-date span:nth-child(1) {
    font-size: calc(18 / 390 * 100vw);
  }
  .timetable-date span:nth-child(2) {
    font-size: calc(18 / 390 * 100vw);
  }
  .timetable-schedule {
    position: relative;
    margin: 0 calc(30 / 390 * 100vw);
  }
  .timetable-schedule::before {
    content: '';
    position: absolute;
    top: calc(10 / 390 * 100vw);
    left: calc(16 / 390 * 100vw);
    width: calc(2 / 390 * 100vw);
    height: calc(100% - calc(30 / 390 * 100vw));
    background: #fff;
  }
  .timetable-schedule .time {
    position: relative;
    width: calc(100% + calc(30 / 390 * 100vw));
    margin: calc(10 / 390 * 100vw) 0 0 calc(20 / 390 * 100vw);
    padding: 0 0 .3em .3em;
    color: #fff;
    font-size: calc(25 / 390 * 100vw);
    font-weight: 700;
    font-family: var(--font-sourceHan);
    border-bottom: calc(2 / 390 * 100vw) solid #fff;
  }
  .timetable-schedule .time::before {
    content: '⚫︎';
    position: absolute;
    left: -.55em;
    bottom: 0;
    font-size: calc(25 / 390 * 100vw);
    line-height: 0;
  }
  .timetable-schedule .time span {
    display: inline-block;
    transform: rotate(-8deg);
  }
  .timetable-schedule-block {
    position: relative;
    margin-top: calc(15 / 390 * 100vw);
    background: #fff;
    border-radius: calc(20 / 390 * 100vw);
    overflow: hidden;
  }
  .timetable-schedule-block-heading {
    padding: .2em 0 .5em;
    border: none;
    font-size: calc(15 / 390 * 100vw);
  }
  .timetable-schedule-block-heading strong {
    font-size: calc(24 / 390 * 100vw);
  }
  .timetable-schedule-block-heading.--d {
    border-radius: 0;
    border: none;
  }
/*	20260203追記SP時アフターパティーの罫線非表示*/
  .timetable-schedule-block-contents {
    padding-bottom: .6em;
    margin: .5em 1em 0;
/*    border-bottom: calc(2 / 390 * 100vw) solid var(--color-green);*/
	  border-bottom: none;
    font-size: calc(13 / 390 * 100vw);
    font-weight: 700;
  }
/*	20260203追記SP時アフターパーティーの罫線を消す*/
	.timetable-schedule-block-contents.line_none{
	 border-bottom: none;
	}
	
  .timetable-schedule-block-contents strong {
    font-size: calc(18 / 390 * 100vw);
  }
  .timetable-schedule-block-contents strong + span {
    text-indent: -.5em;
  }
  .timetable-schedule-button {
    max-width: none;
    margin: .5em 1em;
    padding: .5em;
    font-size: calc(16 / 390 * 100vw);
  }
}


/* map */
.map {
  position: relative;
  padding: 100px 0 480px;
  margin-top: -100px;
}
.map::before,
.map::after {
  content: '';
  position: absolute;
}
.map::before {
  top: -21%;
  left: 4.5%;
  width: 36.5%;
  height: 830px;
  background: url(../img/deco_map_01.png) left top / 100% no-repeat;
}
.map::after {
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 440px;
  background: url(../img/bg_map_01.svg) center top / cover no-repeat;
}
.map-contents {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  text-align: center;
}
.map-contents::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  width: 50%;
  height: 120%;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #166250 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #166250 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center top;
  border: 1px solid #166250;
  border-radius: 50px 0 0 50px;
  transform: translateY(-48%);
}
.map-contents-heading span {
  display: inline-block;
  width: 330px;
  padding: .6em;
  background: var(--color-lightblue);
  border-radius: 100vmax;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.map-contents p {
  color: #fff;
  font-size: 18px;
}
.map-contents p:first-of-type {
  margin: 1em 0 .1em;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.map-image {
  position: relative;
  margin-top: 30px;
  padding: 80px;
  background: #fff;
  border-radius: 50px;
}
.map-image::after {
  content: '';
  position: absolute;
  top: -140px;
  right: 50px;
  width: 16.7%;
  height: 170px;
  background: url(../img/deco_map_02.png) right bottom / 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .map {
    padding: calc(90 / 390 * 100vw) 0 calc(160 / 390 * 100vw);
    margin-top: calc(-70 / 390 * 100vw);
  }
  .map::before {
    top: calc(-70 / 390 * 100vw);
    left: calc(-20 / 390 * 100vw);
    width: calc(200 / 390 * 100vw);
    height: calc(400 / 390 * 100vw);
  }
  .map::after {
    height: calc(180 / 390 * 100vw);
  }
  .map-contents {
    margin-top: calc(20 / 390 * 100vw);
  }
  .map-contents::after {
    border-radius: 20px 0 0 20px;
  }
  .map-contents-heading span {
    width: calc(250 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .map-contents p { 
    font-size: calc(15 / 390 * 100vw);
  }
  .map-contents p:first-of-type {
    margin: .5em 0 .1em;
    font-size: calc(18 / 390 * 100vw);
  }
  .map-image {
    margin: calc(20 / 390 * 100vw) calc(30 / 390 * 100vw) 0;
    padding: calc(50 / 390 * 100vw) calc(10 / 390 * 100vw);
    border-radius: calc(20 / 390 * 100vw);
  }
  .map-image::after {
    top: auto;
    bottom: calc(-30 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    width: calc(80 / 390 * 100vw);
    height: calc(100 / 390 * 100vw);
  }
}


/* contents */
.contents {
  position: relative;
  margin-top: -140px;
  padding-top: 100px;
  background: #046F47;
}
.contents::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% - 750px);
  width: 1500px;
  height: 430px;
  background: url(../img/bg_contents_01.png) center center / cover no-repeat;
}
.contents-heading {
  position: relative;
  z-index: 1;
}
.contents-heading::before,
.contents-heading::after {
  content: '';
  position: absolute;
}
.contents-heading::before {
  top: 40%;
  left: 4.5%;
  width: 30%;
  height: 375px;
  background: url(../img/deco_contents_01.png) left center / 100% no-repeat;
  transform: translateY(-50%);
}
.contents-heading::after {
  top: -250px;
  right: -8.83%;
  width: 31.25%;
  height: 460px;
  background: url(../img/deco_contents_02.png) right top / 100% no-repeat;
}
.contents-list {
  position: relative;
  display: flex;
  margin: 80px -25px 0;
  padding-bottom: 155px;
}
.contents-list::after {
  content: '';
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 17.4%;
  height: 175px;
  background: url(../img/deco_contents_03.png) right top / 100% no-repeat;
}
.contents-item {
  width: calc(33.33333% - 50px);
  margin: 0 25px;
}
.contents-item-heading {
  margin-bottom: 60px;
  text-align: center;
}
.contents-item-heading span {
  position: relative;
  display: inline-block;
  min-width: 250px;
  padding: .5em 1.5em;
  background: #E38800;
  border-radius: 15px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.contents-item-heading span::after {
  content: '';
  position: absolute;
  left: calc(50% - 7px);
  bottom: -23px;
  width: 14px;
  height: 23px;
  background: url(../img/icn_speech_01.svg) center center / 100% no-repeat;
}
.contents-item-block {
  position: relative;
  border: 20px solid #fff;
}
.contents-item-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -10px;
  width: 23.8%;
  height: 50px;
  background: url(../img/icn_clip_01.svg) right bottom / 100% no-repeat;
}
.contents-item-block + .contents-item-block {
  margin-top: 50px;
}
/* .contents-item-column {
  display: flex;
  align-items: center;
  margin-top: 1em;
}
.contents-item-column p {
  flex: 1;
  margin-right: 1em;
}
.contents-item-column img {
  width: 44%;
} */
@media screen and (max-width: 1024px) {
  .contents-list {
    margin: 70px -10px 0;
  }
  .contents-item {
    width: calc(33.33333% - 20px);
    margin: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .contents {
    margin-top: calc(-70 / 390 * 100vw);
    padding-top: calc(70 / 390 * 100vw);
  }
  .contents::before {
    display: none;
  }
  .contents-heading::before {
    left: calc(10 / 390 * 100vw);
    width: calc(120 / 390 * 100vw);
    height: calc(120 / 390 * 100vw);
  }
  .contents-heading::after {
    top: calc(-100 / 390 * 100vw);
    right: calc(20 / 390 * 100vw);
    width: calc(120 / 390 * 100vw);
    height: calc(140 / 390 * 100vw);
  }
  .contents-list {
    display: block;
    margin: calc(30 / 390 * 100vw) 0 0;
    padding: 0 calc(50 / 390 * 100vw) calc(70 / 390 * 100vw);
  }
  .contents-list::after {
    right: calc(15 / 390 * 100vw);
    width: calc(90 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
  }
  .contents-item {
    width: 100%;
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .contents-item:last-child {
    margin-bottom: 0;
  }
  .contents-item-heading {
    margin-bottom: calc(30 / 390 * 100vw);
  }
  .contents-item-heading span {
    min-width: none;
    width: 100%;
    padding: .5em 2em;
    border-radius: calc(10 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .contents-item-heading span::after {
    left: calc(50% - calc(7 / 390 * 100vw));
    bottom: calc(-23 / 390 * 100vw);
    width: calc(14 / 390 * 100vw);
    height: calc(23 / 390 * 100vw);
  }
  .contents-item-block {
    border-width: calc(15 / 390 * 100vw);
  }
  .contents-item-block::before {
    top: calc(-52 / 390 * 100vw);
    right: calc(-5 / 390 * 100vw);
    width: calc(50 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
  }
  .contents-item-block + .contents-item-block {
    margin-top: calc(20 / 390 * 100vw);
  }
  /* .contents-item-column img {
    width: 30%;
  } */
}


/* gift */
.gift {
  position: relative;
  padding: 60px 0 150px;
  background: #046F47;
}
.gift::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -70px;
  z-index: 1;
  width: 100%;
  height: 100px;
  background: url(../img/deco_gift_06.svg) center bottom / cover no-repeat;
}
.gift .section-inner {
  position: relative;
  padding-bottom: 270px;
}
.gift .section-inner::before {
  content: '';
  position: absolute;
  left: -5%;
  bottom: 20px;
  width: 25%;
  height: 280px;
  background: url(../img/deco_gift_05.png) left top / 100% no-repeat;
}
.gift .section-blink-image img {
  bottom: 45px;
}
.gift-heading {
  position: relative;
}
.gift-heading::before,
.gift-heading::after {
  content: '';
  position: absolute;
}
.gift-heading::before {
  top: -230px;
  left: -11%;
  width: 36.7%;
  height: 515px;
  background: url(../img/deco_gift_01.png) center left / 100% no-repeat;
}
.gift-heading::after {
  top: 30px;
  right: -16%;
  width: 35.4%;
  height: 250px;
  background: url(../img/deco_gift_02.png) top right / 100% no-repeat;
}
.gift-novelty {
  position: relative;
  padding-top: 67.7%;
  background: url(../img/bg_gift_01_lg.png) center center / 100% no-repeat;
}
.gift-novelty::before,
.gift-novelty::after {
  content: '';
  position: absolute;
}
.gift-novelty::before {
  left: 52%;
  bottom: -158px;
  width: 15.5%;
  height: 260px;
  background: url(../img/deco_gift_03.png) center top / 100% no-repeat;
  transform: translateX(-50%);
}
.gift-novelty::after {
  content: '';
  position: absolute;
  right: -.8%;
  bottom: -70px;
  width: 14%;
  height: 200px;
  background: url(../img/deco_gift_04.png) right top / 100% no-repeat;
}
.gift-novelty > p {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 5% 8% 0;
  font-family: var(--font-sourceHan);
  font-weight: 700;
  text-align: right;
}
.gift-novelty-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8.3% 0 10%;
  transform: translateY(-50%);
}
.gift-novelty-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-novelty-item {
  width: 30%;
  margin: 0 10px;
  padding: 30px 10px 20px;
  background: #fff;
  border-radius: 60px;
}
.gift-novelty-item:nth-child(1) {
  transform: rotate(-7deg);
}
.gift-novelty-item:nth-child(2) {
  width: 35%;
  margin: 80px 10px 0 30px;
  padding: 30px 30px 20px;
  border-radius: 100vmax;
}
.gift-novelty-item:nth-child(3) {
  padding: 20px 20px 10px;
  transform: rotate(-23deg) translate(20px, -60px);
  border-radius: 50px;
}
.gift-novelty-item p {
  margin-top: .5em;
  font-weight: 700;
  font-family: var(--font-sourceHan);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gift {
    padding: calc(40 / 390 * 100vw) 0 calc(50 / 390 * 100vw);
  }
  .gift::after {
    bottom: calc(-40 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
  }
  .gift .section-inner {
    padding-bottom: calc(120 / 390 * 100vw);
  }
  .gift .section-inner::before {
    left: calc(20 / 390 * 100vw);
    bottom: 0;
    width: calc(120 / 390 * 100vw);
    height: calc(120 / 390 * 100vw);
  }
  .gift .section-blink-image img {
    bottom: calc(10 / 390 * 100vw);
  }
  .gift-heading::before {
    top: calc(-100 / 390 * 100vw);
    left: calc(20 / 390 * 100vw);
    width: calc(130 / 390 * 100vw);
    height: calc(140 / 390 * 100vw);
  }
  .gift-heading::after {
    top: calc(-40 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    width: calc(130 / 390 * 100vw);
    height: calc(130 / 390 * 100vw);
  }
  .gift-novelty {
    margin: 0 calc(20 / 390 * 100vw) 0;
    padding-top: calc(390 / 390 * 100vw);
    background: url(../img/bg_gift_01_sm.png) center center / 100% 100% no-repeat;
  }
  .gift-novelty::before {
    left: 54%;
    bottom: calc(-70 / 390 * 100vw);
    width: calc(70 / 390 * 100vw);
    height: calc(100 / 390 * 100vw);
  }
  .gift-novelty::after {
    right: calc(-5 / 390 * 100vw);
    bottom: calc(-40 / 390 * 100vw);
    width: calc(80 / 390 * 100vw);
    height: calc(100 / 390 * 100vw);
  }
  .gift-novelty > p {
    margin-top: 0;
    padding: calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
  .gift-novelty-inner {
    height: 100%;
    padding: 10% 10% 10% 12%;
  }
  .gift-novelty-list {
    height: 100%;
    display: block;
  }
  .gift-novelty-item:nth-child(n) {
    width: 45%;
    padding: calc(12 / 390 * 100vw);
  }
  .gift-novelty-item:nth-child(1) {
    margin: 0 auto 0 0;
    border-radius: calc(40 / 390 * 100vw);
  }
  .gift-novelty-item:nth-child(2) {
    margin: calc(-90 / 390 * 100vw) 0 0 auto;
  }
  .gift-novelty-item:nth-child(3) {
    margin: calc(-40 / 390 * 100vw) 0 0 calc(30 / 390 * 100vw);
    border-radius: calc(30 / 390 * 100vw);
    transform: rotate(-23deg) translate(0);
  }
  .gift-novelty-item p {
    font-size: calc(12 / 390 * 100vw);
  }
}


/* Q&A */
.qa {
  position: relative;
  padding: 140px 0 200px;
  background-image: repeating-linear-gradient(-45deg, #034c33, #034c33 10px, #14553d 10px, #14553d 20px);
}
.qa .section-label {
  top: calc(50% - 40px);
}
.qa-heading {
  position: relative;
}
.qa-heading::after {
  content: '';
  position: absolute;
  top: calc(50% - 180px);
  right: -12.5%;
  width: 32.9%;
  height: 380px;
  background: url(../img/deco_qa_01.png) right center / 100% no-repeat;
  pointer-events: none;
}
.qa-list {
  margin-top: 40px;
}
.qa-item {
  margin-top: 30px;
  background: #Fff;
  border-radius: 30px;
  overflow: hidden;
}
.qa-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  min-height: 88px;
  background: var(--color-pink);
}
.qa-item span img {
  width: 36%;
}
.qa-item p {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1em;
  line-height: 1.5;
}
.qa-item-q,
.qa-item-a > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.qa-item-q {
  cursor: pointer;
}
.qa-item-q.--open button::after {
  opacity: 0;
}
.qa-item-q > * {
  display: flex;
  align-items: center;
}
.qa-item-q p {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.qa-item-q button {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 1em;
  border-radius: 100vmax;
  background: var(--color-pink);
  cursor: pointer;
}
.qa-item-q button::before,
.qa-item-q button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 100vmax;
}
.qa-item-q button::before {
  height: 5px;
  width: 50%;
}
.qa-item-q button::after {
  height: 50%;
  width: 5px;
}
.qa-item-a {
  display: grid; 
  grid-template-rows: 0fr;
  transition: grid-template-rows .2s ease, opacity .2s ease;
  overflow: hidden;
}
.qa-item-a.--open {
  grid-template-rows: 1fr;
  border-top: 3px solid var(--color-green);
}
.qa-item-a > div {
  overflow: hidden;
}
.qa-item-a span {
  background: var(--color-lightblue);
}
.qa-more {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .qa {
    padding: calc(70 / 390 * 100vw) 0 calc(90 / 390 * 100vw);
  }
  .qa-heading::after {
    top: calc(50% - calc(55 / 390 * 100vw));
    right: 0;
    width: calc(110 / 390 * 100vw);
    height: calc(110 / 390 * 100vw);
  }
  .qa-list {
    margin: calc(25 / 390 * 100vw) calc(30 / 390 * 100vw) 0;
  }
  .qa-item {
    margin-top: calc(20 / 390 * 100vw);
    border-radius: calc(15 / 390 * 100vw);
  }
  .qa-item span {
    width: calc(40 / 390 * 100vw);
    min-height: calc(40 / 390 * 100vw);
  }
  .qa-item span img {
    width: 45%;
  }
  .qa-item-q p {
    font-size: calc(15 / 390 * 100vw);
  }
  .qa-item-q button {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
  }
  .qa-item-q button::before {
    height: calc(3 / 390 * 100vw);
  }
  .qa-item-q button::after {
    width: calc(3 / 390 * 100vw);
  }
  .qa-item-a.--open {
    border-width: calc(3 / 390 * 100vw);
  }
  .qa-more {
    margin-top: calc(30 / 390 * 100vw);
  }
}


/* access */
.access {
  position: relative;
  margin-top: -100px;
  padding: 100px 0 370px;
}
.access::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../img/deco_access_01.svg) center top / cover no-repeat;
}
.access-heading {
  position: relative;
}
.access-heading::before,
.access-heading::after {
  content: '';
  position: absolute;
}
.access-heading::before {
  top: calc(50% - 140px);
  left: 6.5%;
  width: 16.9%;
  height: 300px;
  background: url(../img/deco_access_02.png) left top / 100% no-repeat;
}
.access-heading::after {
  top: -150px;
  right: 8%;
  width: 31.875%;
  height: 410px;
  background: url(../img/deco_access_03.png) right top / 100% no-repeat;
}
.access-contents {
  margin-top: 50px;
  padding: 55px 55px 35px;
  background: #fff;
  border-radius: 40px;
}
.access-map {
  position: relative;
  width: 100%;
  height: 510px;
}
.access-map::before {
  content: '';
  position: absolute;
  right: 2.75%;
  top: -60px;
  width: 12.85%;
  height: 90px;
  background: url(../img/deco_access_05.svg) right top / 100% no-repeat;
}
.access-map iframe {
  width: 100%;
  height: 100%;
}
.access-place {
  display: flex;
  align-items: flex-end;
  margin: 30px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-green);
}
.access-place-heading {
  display: inline-block;
  margin-right: 20px;
  padding: .5em 2.8em;
  background: var(--color-green);
  border-radius: 100vmax;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-sourceHan);
}
.access-place a {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  color: var(--color-pink);
  font-weight: 700;
  font-family: var(--font-sourceHan);
  transition: opacity var(--transition);
}
.access-place a:hover {
  opacity: .6;
}
.access-place a::before,
.access-place a::after {
  content: '';
  position: absolute;
  top: 38%;
}
.access-place a::before {
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../img/icn_arrow_02.svg) center center / 100% no-repeat;
}
.access-place a::after {
  right: 0;
  width: 13px;
  height: 13px;
  background: url(../img/icn_window_01.svg) center center / 100% no-repeat;
}
.access-address {
  position: relative;
}
.access-address::after {
  content: '';
  position: absolute;
  right: 4.12%;
  bottom: -75px;
  width: 35.13%;
  height: 348px;
  background: url(../img/deco_access_04.png) right bottom / 100% no-repeat;
}
.access-address-block {
  display: flex;
  font-weight: 700;
}
.access-address-block:not(:first-child) {
  margin-top: 30px;
}
.access-address-block-heading {
  display: inline-block;
  min-width: 90px;
  height: min-content;
  margin-right: 20px;
  padding: .5em;
  border: 1px solid var(--color-green);
  border-radius: 100vmax;
  font-size: 14px;
  font-family: var(--font-sourceHan);
  text-align: center;
}
.access-address-block li {
  letter-spacing: .1em;
}
.access-address-block li + li {
  margin-top: 1em;
}
.access-address-block li h5 {
  position: relative;
  padding-left: 1.2em;
}
.access-address-block li h5::before {
  content: '';
  position: absolute;
  top: .08em;
  left: 0;
  width: 17px;
  height: 17px;
  background: url(../img/icn_star_01.svg) center center / 100% no-repeat;
}
.access-address-block li h5 + p {
  margin-top: .3em;
  padding-left: 1.2em;
  font-weight: 500;
  line-height: 1.5;
}
.access-address-block li h5 + p span {
  font-size: 13px;
}
.access .section-loop-image {
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .access-address::after {
    right: -40px;
  }
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: calc(-70 / 390 * 100vw);
    padding: calc(70 / 390 * 100vw) 0 calc(120 / 390 * 100vw);
  }
  .access::before {
    top: calc(22 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
  }
  .access-heading::before {
    top: calc(50% - calc(40 / 390 * 100vw));
    left: calc(15 / 390 * 100vw);
    width: calc(90 / 390 * 100vw);
    height: calc(90 / 390 * 100vw);
  }
  .access-heading::after {
    top: calc(-70 / 390 * 100vw);
    right: calc(-5 / 390 * 100vw);
    width: calc(160 / 390 * 100vw);
    height: calc(160 / 390 * 100vw);
  }
  .access-contents {
    margin: calc(30 / 390 * 100vw) calc(30 / 390 * 100vw) 0;
    padding: calc(20 / 390 * 100vw);
    border-radius: calc(20 / 390 * 100vw);
  }
  .access-map {
    height: calc(250 / 390 * 100vw);
  }
  .access-map::before {
    right: 0;
    top: calc(-30 / 390 * 100vw);
    width: calc(70 / 390 * 100vw);
    height: calc(45 / 390 * 100vw);
  }
  .access-place {
    display: block;
    margin: calc(15 / 390 * 100vw) 0;
    padding-bottom: calc(10 / 390 * 100vw);
    border-width: calc(2 / 390 * 100vw);
  }
  .access-place-heading {
    display: block;
    width: 100%;
    margin: 0 0 calc(10 / 390 * 100vw);
    padding: .5em .5em .6em;
    font-size: calc(18 / 390 * 100vw);
    text-align: center;
  }
  .access-place p {
    text-align: center;
  }
  .access-place a {
    padding: 0 1.2em;
  }
  .access-place a::before,
  .access-place a::after {
    top: 26%;
  }
  .access-place a::before {
    width: calc(14 / 390 * 100vw);
    height: calc(14 / 390 * 100vw);
  }
  .access-place a::after {
    width: calc(14 / 390 * 100vw);
    height: calc(14 / 390 * 100vw);
  }
  .access-address::after {
    right: calc(-30 / 390 * 100vw);
    bottom: calc(-30 / 390 * 100vw);
    width: calc(120 / 390 * 100vw);
    height: calc(120 / 390 * 100vw);
  }
  .access-address-block {
    display: block;
  }
  .access-address-block:not(:first-child) {
    margin-top: calc(15 / 390 * 100vw);
  }
  .access-address-block-heading {
    min-width: calc(100 / 390 * 100vw);
    margin: 0 0 .5em;
    font-size: calc(15 / 390 * 100vw);
  }
  .access-address-block li h5::before {
    top: .04em;
    width: calc(16 / 390 * 100vw);
    height: calc(16 / 390 * 100vw);
  }
  .access-address-block li h5 + p span {
    font-size: calc(12 / 390 * 100vw);
  }
  .access .section-loop-image {
    bottom: calc(10 / 390 * 100vw);
  }
}


/* footer */
.footer {
  position: relative;
  background: var(--color-darkgreen);
  color: #fff;
  margin-top: 90px;
  padding: 50px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50px;
  width: calc(100% - 100px);
  height: 15px;
  background-image: repeating-linear-gradient(-45deg, var(--color-yellow), var(--color-yellow) 5px, transparent 5px, transparent 10px);
}
.footer-top {
  position: absolute;
  z-index: 10;
  top: -100px;
  right: 70px;
  width: 90px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.footer-top.--fixed {
  position: fixed;
  top: auto;
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}
.footer-top.--absolute {
  position: absolute;
  top: -100px;
  bottom: auto;
}
.footer-top a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer .copyright {
  font-weight: normal;
  font-size: 10px;
  letter-spacing: .08em;
  text-align: left;
  white-space: nowrap;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.footer-logoBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 320px;
  width: 100%;
}
.footer-logoBox .logo {
  display: block;
  margin-bottom: 45px;
  width: 100%;
}
.footer-linkBox {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  max-width: 500px;
  width: 100%;
}
.footer-linkBox .contact {
  background-image: url(../img/ico/ico_arrow03.svg);
  background-repeat: no-repeat;
  background-position: center right 5px;
  background-size: 20px auto;
  display: block;
  font-weight: normal;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: .3em;
  margin-bottom: 30px;
  padding: 0 0 2px 42px;
  position: relative;
  width: 100%;
}
.footer-linkBox .contact .ico {
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  width: 28px;
}
.footer-linkBox .contact::before {
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.footer-linkBox .contact::after {
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
}
@media screen and (min-width: 769px) {
  .footer a {
    transition: .3s ease;
  }
  .footer-linkBox .contact {
    transition: .3s ease;
  }
  .footer-linkBox .contact::before {
    transition: .3s ease;
  }
  .footer-linkBox .contact::after {
    transition: .3s .3s ease;
  }
  .footer a:hover {
    opacity: .6;
  }
  .footer-linkBox .contact:hover {
    background-position: center right 0;
    opacity: 1;
  }
  .footer-linkBox .contact:hover::before {
    width: 0;
  }
  .footer-linkBox .contact:hover::after {
    width: 100%;
  }
}
.footer-linkBox .shareList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}
.footer-linkBox .shareList h3 {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .15em;
  margin-right: 25px;
  width: 180px;
}
.footer-linkBox .shareList-list {
  width: calc(100% - 60px - 30px);
}
.footer-linkBox .shareList-list a {
  background-image: url(../img/ico/ico_arrow03.svg);
  background-repeat: no-repeat;
  background-position: center right 5px;
  background-size: 20px auto;
  display: block;
  line-height: 1.4;
  padding-bottom: 7px;
  position: relative;
}
.footer-linkBox .shareList-list a::before {
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.footer-linkBox .shareList-list a::after {
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.footer-linkBox .shareList-list a + a {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .footer-linkBox .shareList-list a {
    transition: .3s ease;
  }
  .footer-linkBox .shareList-list a::before {
    transition: .3s ease;
  }
  .footer-linkBox .shareList-list a::after {
    transition: .3s .3s ease;
  }
  .footer-linkBox .shareList-list a:hover {
    background-position: center right 0;
    opacity: 1;
  }
  .footer-linkBox .shareList-list a:hover::before {
    width: 0;
  }
  .footer-linkBox .shareList-list a:hover::after {
    width: 100%;
  }
}
.footer-linkBox .linkList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer-linkBox .linkList a {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  font-weight: 700;
  padding-right: 20px;
  position: relative;
  letter-spacing: .05em;
}
.footer-linkBox .linkList a::before {
  background: url(../img/ico/ico_new_w.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  inset: 4px 0 auto auto;
  width: 14px;
  height: 14px;
}
.footer-linkBox .linkList a + a {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: calc(30 / 390 * 100vw);
    padding: calc(70 / 390 * 100vw) calc(15 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .footer::before {
    top: calc(15 / 390 * 100vw);
    left: calc(15 / 390 * 100vw);
    width: calc(100% - calc(30 / 390 * 100vw));
    height: calc(8 / 390 * 100vw);
    background-image: repeating-linear-gradient(-45deg, var(--color-yellow), var(--color-yellow) calc(5 / 390 * 100vw), transparent calc(5 / 390 * 100vw), transparent calc(10 / 390 * 100vw));
  }
  .footer-top {
    top: calc(-35 / 390 * 100vw);
    right: calc(20 / 390 * 100vw);
    width: calc(60 / 390 * 100vw);
  }
  .footer-top.--fixed {
    bottom: calc(10 / 390 * 100vw);
  }
  .footer-top.--absolute {
    top: calc(-35 / 390 * 100vw);
  }
  .footer .copyright {
    text-align: center;
  }
  .footer-inner {
    display: block;
  }
  .footer-logoBox {
    margin: 0 auto;
    max-width: 180px;
    width: 100%;
  }
  .footer-logoBox .logo {
    display: block;
    margin-bottom: 30px;
  }
  .footer-linkBox {
    margin-bottom: 40px;
    margin-left: 0;
    align-items: center;
    max-width: 100%;
  }
  .footer-linkBox .contact {
    background-position: center right 0;
    font-size: 22px;
    margin: 0 auto 40px;
    max-width: 450px;
    padding: 0 0 2px 38px;
  }
  .footer-linkBox .contact .ico {
    width: 26px;
  }
  .footer-linkBox .contact::before {
    background: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
  .footer-linkBox .contact::after {
    background: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
  }
  .footer-linkBox .shareList {
    display: block;
    margin: 0 auto 30px;
    max-width: 450px;
    width: 100%;
  }
  .footer-linkBox .shareList h3 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .15em;
    margin-right: 0;
    margin-bottom: 12px;
    width: 100%;
  }
  .footer-linkBox .shareList-list {
    width: 100%;
  }
  .footer-linkBox .shareList-list a + a {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-box {
    display: block;
  }
  .footer-box-item01 {
    margin: 0 auto 40px;
  }
  .footer-box-item02 {
    margin: 0 auto 40px;
    max-width: 220px;
  }
  .footer-box-item02-snsList01 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .footer-box-item02-snsList01 li:first-child {
    font-size: 18px;
  }
  .footer-box-item02-snsList01 li:last-child a + a {
    margin-left: 20px;
  }
  .footer-box-item02-snsList01 li + li {
    margin-left: 20px;
  }
  .footer-box-item02-snsList02 {
    justify-content: center;
  }
  .footer-box-item02-snsList02 li + li {
    margin-left: 10px;
  }
}