@charset "utf-8";
:root{
  --teal: #72c7bf;
  --teal-a10: rgba(114,199,191, 0.1);
  --gray: #535c5b;
  --palegray: #5d6362;
  --palegray-a60: rgba(93,99,98, 0.6);
  --silverwhite: #ededed;
  --lightgray: #eff1f1;
  --lightslategray: #d9dede;
  --snowwhite: #feffff;
  --white: #ffffff;
  --white-a10: rgba(255,255,255, 0.1);
  --white-a50: rgba(255,255,255, 0.5);
  --red: #d95e6a;
  --color: var(--gray);
  --color-light: var(--snowwhite);
  --color-pale: var(--palegray);
  --color-pale-a60: var(--palegray-a60);
  --color-brand: var(--teal);
  --color-attention: var(--red);
  --bgcolor: var(--lightgray);
  --bgcolor-dark: var(--gray);
  --bgcolor-pale: var(--silverwhite);
  --bgcolor-light: var(--white);
  --bgcolor-light-a10: var(--white-a10);
  --bgcolor-light-a50: var(--white-a50);
  --bgcolor-brand: var(--teal);
  --bgcolor-brand-a10: var(--teal-a10);
  --bgpattern: url(../images/common/bg-pattern-gray.png);
  --bgpattern-brand: url(../images/common/bg-pattern-teal.png);
  --bgpattern-brand-lighter: url(../images/common/bg-pattern-lightteal.png);
  --border-color: rgba(0,0,0, 0.1);
  --border-color-light: rgba(255,255,255, 0.3);
  --border-color-bold: var(--lightslategray);
  --border: var(--border-color) 1px solid;
  --border-light: var(--border-color-light) 1px solid;
  --font: 'Noto Sans JP', sans-serif;
  --roman-font: 'Chillax', sans-serif;
  --number-font: 'Roboto', sans-serif;
  --logo-font: 'Quicksand', sans-serif;
  --line: 2;
  --line-wider: 2.5;
  --line-narrow: 1.6;
  --spacing: 0.1em;
  --spacing-narrow: 0.05em;
  --spacing-narrower: 0;
  --spacing-title: -0.02em;
  --radius-large: 3.125em;
  --radius-small: 0.75em;
  --inner-width: 1390px;
  --inner-padding: 6.25%;
  --inner-padding-wider: 10.75%;
  --header-height: 5.25em;
  --margin: 0.375rem;
  --leading-trim: calc((1em - 1lh) / 2);
  box-sizing: border-box;
}
@media(737px <= width < 1280px){
  :root{
    --header-height: 6.25em;
    --margin: 0.5rem;
  }  
}
@media(1280px <= width) {
  :root{
    --margin: 0.625rem;
    --header-height: 7.5em;
    --radius-large: 5em;
  }
}
body{
  color: var(--color);
  font-size: clamp(15px, 1vw, 20px);
  font-family: var(--font);
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: var(--line);
  letter-spacing: var(--spacing);
}
li{
  list-style: none;
}
a{
  color: currentColor;
  text-decoration: none;
}
img{
  width: 100%;
  vertical-align: middle;
}
address{
  font-style: normal;
}
small{
  font-size: 0.875em;
}
.defs{
  display: none;
}
@media (1280px <= width) {
  .is-sp{
    display: none;
  }
}
@media (width < 1280px) {
  .is-pc{
    display: none;
  }
}
/*---------------
BASE
---------------*/
.wrapper{
  background: var(--bgpattern);
  position: relative;
}
.l-inner{
  margin-inline: auto;
  width: 82.5%;
}
.l-inner--narrow{
  margin-inline: auto;
  width: 78.5%;
}
@media (1280px <= width) {
  .l-inner{
    width: 86.875%;
  }
  .l-inner--narrow{
    width: 71.875%;
  }
}

/*---------------
Site Header
---------------*/
.site-header{
  padding-right: 3.5%;
  padding-left: 3%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transition-property: opacity transform;
  transition-duration: 1.4s;
}
.site-header.is-hidden{
  opacity: 0;
  transform: translateY(calc(var(--header-height) * -2));
}
.header__logo img{
  width: 4em;
  height: 4em;
}
.header__h1--en{
  display: inline-block;
  margin-left: 1em;
  color: var(--color-brand);
  font-size: 1.25em;
  font-family: var(--roman-font);
  font-weight: 500;
}
.header__h1{
  display: inline-block;
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: var(--border);
  color: var(--color);
  font-size: 0.6875em;
  letter-spacing: var(--spacing-narrow);
}
.g-nav{
  font-family: var(--roman-font);
  font-weight: 600;
}
.g-nav>li>ul>li a{
  display: block;
  padding-left: 1em;
  color: var(--color-light);
  position: relative;
}
.g-nav>li>ul>li a::before{
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../images/icon-egg-white.svg) no-repeat center left;
  background-size: auto 75%;
  position: absolute;
}
@media (width < 960px) {
  .site-header{
    padding-block: calc(var(--margin) * 2);
  }
  .g-nav__wrapper{
    padding-bottom: calc(var(--margin) * 6);
    width: 100%;
    height: calc(100svh - var(--header-height));
    box-sizing: border-box;
    color: var(--color-light);
    background: var(--bgpattern-brand);
    position: absolute;
    top: var(--header-height);
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: .5s;
  }
  .g-nav a{
    color: var(--color-light);
  }
  .g-nav>li{
    padding-block: 0.5em;
    padding-inline: 6.25%;
    font-size: 3.125em;
    line-height: 1;
  }
  .g-nav>li::before{
    content: attr(data-title);
    display: block;
    padding-left: 0.125em;
    padding-bottom: 0.25em;
    font-size: 0.3125em;
  }
  .g-nav>li:not(first-child){
    border-top: var(--border-light);
  }
  .g-nav>li>ul{
    margin-top: calc(var(--leading-trim) + 1em);
    margin-left: 0.5em;
    font-size: 0.375em;
    line-height: var(--line);
  }
  .g-nav>li>ul>li a::before{
    top: 0.5em;
    left: 0;
  }
  .g-nav>li>ul>li br{
    display: none;
  }
  .drawer__close-btn{
    margin-top: 3em;
    padding: 0.25em 1.5em;
    border: var(--color-light) 1px solid;
    border-radius: 2em;
    margin-inline: auto;
    width: max-content;
  }
/*when drawer open*/
.is-layer-fixed{
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.is-open .g-nav__wrapper{
  transform: translateX(0);
  visibility: visible;
  z-index: -100;
  opacity: 1;
}
/*menu-button style and action*/
.drawer__btn{
  width: 3.5em;
  height: 3.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../images/icon-egg-white.svg) no-repeat center center;
  background-size: contain;
  text-align: center;
}
.drawer__btn span{
  margin: 2px auto;
  display: inline-block;
  width: 1em;
  height: 2px;
  border-radius: 1px;
  background: var(--color-brand);
}
.is-open .drawer__btn span:first-of-type{
  transform: translateY(3px) rotate(20deg);
}
.is-open .drawer__btn span:last-of-type{
  transform: translateY(-3px) rotate(-20deg);
}
}
@media (960px <= width) {
  .site-header{
    padding-block: calc(var(--margin) * 4.5);
    pointer-events: none;
  }
  .site-header .header__logo,
  .g-nav>li{
    pointer-events: auto;
  }
  .g-nav>li:has(ul){
    cursor: pointer;
  }
  .g-nav>li:has(ul)::after{
    content: url(../images/common/icon-dropdown.svg);
    margin-left: 0.25em;
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    opacity: 0.2;
  }
  .g-nav>li{
    margin-left: 2.5em;
    font-size: 0.9375em;
    letter-spacing: var(--spacing-narrow);
    display: inline-block;
    position: relative;
  }
  .g-nav>li a{
    color: var(--color);
  }
  .g-nav>li>ul{
    min-width: 9em;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    box-sizing: content-box;
    color: var(--color-light);
    background-color: var(--bgcolor-brand);
    font-size: 0.9375em;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 3em;
    left: 0;
    transition: .5s;
    z-index: -1;
  }
  .g-nav>li>ul>li a::before{
    top: 0;
    left: 0;
  }
  .g-nav>li>ul>li{
    padding: 0.5em;
    line-height: 1.3;
  }
  .g-nav>li:hover>ul{
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .drawer__btn,
  .drawer__close-btn{
    display: none;
  }
}
@media (width < 737px) {
  .header__h1--en{
    display: none;
  }
  .header__h1{
    padding-left: 0;
    border: none;
  }
}
/*---------------
Related Links
---------------*/
.related-links{
  margin-top: calc(var(--margin) * 16);
}
.related-links li{
  font-size: 1.125em;
}
.related-links li a{
  display: block;
  color: var(--color);
  position: relative;
}
.related-links li:first-child{
}
.related-links li:last-child{
  text-align: right;
}
.related-links li svg{
  width: 1em;
  height: 1em;
  stroke: var(--color-brand);
  vertical-align: -0.125em;
}
.related-links li:first-child svg{
  margin-right: 0.75em;
  transform: rotate(180deg);
}
.related-links li:last-child svg{
  margin-left: 0.75em;
}
.related-links li a::before{
  margin-block: calc(var(--leading-trim) + 0.25em);
  content: attr(data-title);
  display: block;
  font-size: 2.75em;
  font-family: var(--roman-font);
  font-weight: Medium;
  letter-spacing: var(--spacing-title);
}
@media (width < 737px) {
  .related-links li:not(:first-child){
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: var(--border);
  }
}
@media (737px <= width) {
  .related-links{
    display: flex;
    justify-content: space-between;
  }
}
@media (1280px <= width) {
  .related-links li a::before{
    font-size: 3.75em;
  }
}
/*---------------
Site Footer
---------------*/
footer{
  margin-top: calc(var(--margin) * 16);
}
.footer__wrapper{
  padding-top: calc(var(--margin) * 12);
  border-top-left-radius: var(--radius-large);
  border-top-right-radius: var(--radius-large);
  color: var(--color-light);
  background: var(--bgcolor-dark);
}
/*---------------
CTA AREA
---------------*/
.cta__list>li>a{
  display: block;
  width: 100%;
  padding-top: calc(var(--margin) * 20);
  padding-bottom: calc(var(--margin) * 5.2);
  padding-inline: calc(var(--inner-padding) * 1.25);
  border-radius: 2em;
  box-sizing: border-box;
  color: var(--color-light);
  transition: .5s transform;
}
.cta__list>li:first-child>a{
  background-image: url(../images/common/cta_succession.svg), url(../images/common/icon-arrow-white.svg), url(../images/common/bg-pattern-cta01.png);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: 15% 2em, top 2.5em right 2.5em, top left;
  background-size: 4em auto, 1em auto, auto auto;
}
.cta__list>li:last-child>a{
  background-image: url(../images/common/cta_mail.svg), url(../images/common/icon-arrow-white.svg), url(../images/common/bg-pattern-cta02.png);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: 15% 2.5em, top 2.5em right 2.5em, top left;
  background-size: 3.75em auto, 1em auto, auto auto;
}
.cta__list>li h2{
  font-size: 1.375em;
}
.cta__list>li p{
  margin-top: 0.75em;
  font-size: 0.9375em;
  letter-spacing: var(--spacing-narrow);
}
@media (width < 737px) {
  .cta__list>li:not(:first-child){
    margin-top: 7.5%;
  }
}
@media (737px <= width) {
  .cta__list{
    display: flex;
    justify-content: space-between;
  }
  .cta__list>li{
    flex-basis: calc((100% - 3em) / 2);
  }
  .cta__list>li>a{
    height: 100%;
  }
  .cta__list>li p{
    margin-top: 1.25em;
  }
}
@media (737px <= width < 1280px) {
  .cta__list>li>a{
    padding-top: calc(var(--margin) * 13.5);
    padding-bottom: calc(var(--margin) * 4);
    padding-inline: 9.5%;
  }
  .cta__list>li h2{
    font-size: 1.25em;
  }
}
@media (1280px <= width) {
  .cta__list>li>a{
    padding-inline: 4.375em;
  }
  .cta__list>li:first-child>a{
    background-position: 4.5em 3.75em, top 2.5em right 2.5em, top left;
    background-size: 4.75em auto, 1em auto, auto auto;
  }
  .cta__list>li:last-child>a{
    background-position: 4.5em 4.25em, top 2.5em right 2.5em, top left;
    background-size: 4.5em auto, 1em auto, auto auto;
  }
  .cta__list>li:hover>a{
    transform: scale(1.02);
  }
}
/*---------------
Site Footer
---------------*/
.footer__upper{
  margin-top: calc(var(--margin) * 14);
}
@media (737px <= width) {
  .footer__upper{
    margin-top: calc(var(--margin) * 14);
    display: flex;
  }
  .footer__company-info{ 
    flex-basis: calc(((100% - 3em) / 2) + 3em);
  }
  .footer__megamenu{
    flex-basis: calc((100% - 3em) / 2);
  }
}
.footer__company-info h1 img{
  width: 3.75em;
  height: 3.75em;
}
.footer__h1--en{
  margin-left: 1em;
  font-size: 1.25em;
  font-family: var(--logo-font);
  font-weight: 500;
}
.footer__h1{
  display: inline-block;
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: var(--border-light);
  font-size: 0.6875em;
  font-weight: 400;
}
.footer__company-address{
  margin-top: calc(var(--margin) * 3.6);
  font-size: 0.75em;
  letter-spacing: var(--spacing-narrow);
}
@media (737px <= width) {
  .footer__company-address{
    margin-top: calc(var(--margin) * 6.7);
  }
}
.footer__megamenu h2{
  color: var(--color-brand);
  font-size: 1.75em;
}
.footer__megamenu li{
  font-size: 0.875em;
  font-weight: 400;
  letter-spacing: var(--spacing-narrow);
}
.footer__megamenu a{
  color: var(--color-light);
}
.footer__megamenu a:hover{
  color: var(--color-brand);
  transition: .3s color;
}
.footer__lower{
  display: flex;
}
.footer__copyright{
  font-size: 0.75em;
  letter-spacing: var(--spacing-narrow);
}
.footer__contact{
  font-size: 0.875em;
}
@media (737px <= width) {
  .footer__megamenu{
    margin-top: 1em;
    display: flex;
    justify-content: space-between;
  }
  .footer__megamenu ul{
    margin-top: 2.75em;
    margin-left: 1px;
  }
  .footer__megamenu li:not(:first-child){
    margin-top: 1em;
  }
  .footer__megamenu h2{
    font-size: 0.9375em;
  }
  .footer__lower{
    margin-top: calc(var(--margin) * 12);
    justify-content: space-between;
  }
}
@media (width < 737px) {
  .footer__megamenu{
    margin-top: calc(var(--margin) * 2.5)
  }
  .footer__megamenu h2{
    margin-top: calc(var(--leading-trim) + 1em);
    margin-bottom: var(--leading-trim);
  }
  .footer__megamenu ul>li{
    display: inline-block;
    margin-top: 0.625em;
    margin-right: 1em;
  }
  .footer__lower{
    flex-direction: column-reverse;
  }
  .footer__contact{
    margin-top: calc(var(--margin) * 6);
    text-align: center;
  }
  .footer__copyright{
    margin-top: calc(var(--margin) * 6);
  }
}
.footer__message{
  margin-top: calc(var(--margin) * 14);
  display: flex;
  color: #6b7272;
  font-size: 10em;
  font-family: var(--roman-font);
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--spacing-narrower);
  overflow: hidden;
  p{
    padding-right: 0.375em;
    white-space: nowrap;
    animation: floating-message 30s linear infinite;
  }
  p:nth-child(2){
    animation-delay: -30s;
  }
}
/* アニメーションの定義 */
@keyframes floating-message {
  0% {
    transform: 0; /* 最初は右端（親要素の100%分右）に配置 */
  }
  100% {
    transform: translateX(-100%); /* 最終的には左端（親要素の-100%分左）へ移動 */
  }
}
/*====================
COMMON LAYOUT
====================*/
.l-table{
  margin-top: calc(var(--margin) * 6);
}
.l-table>dl>dt,
.l-table>dl>dd{
  padding: 1em 1em;
}
@media (width < 737px) {
  .l-table.form>dl>dd{
    padding: 1em 0;
  }
}

@media (737px <= width) {
  .l-table dl{
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  .l-table>dl>dt,
  .l-table>dl>dd{
    display: table-cell;
    padding: 2em 3em;
    vertical-align: top;
  }
  .l-table>dl>dt{
    box-sizing: content-box;
  }
}
@media (737px <= width < 1280px) {
  .l-table.form>dl>dd{
    padding: 2em 0 2em 3em;
  }
}
@media (1280px <= width) {
  .l-table.form>dl>dd{
    padding: 2em 3em;
  }
}

@media (737px <= width) {
  .l-split,
  .l-half{
    display: flex;
  }
  .l-split .text-box{
    flex-basis: 66%;
  }
  .l-half>*{
    flex-basis: 50%;
  }
}

.s-array>*{
  display: inline-block;
}

/*====================
COMMON STYLE
====================*/
.l-table dt{
  font-weight: 600;
}
.l-table dl{
  border-top: var(--border);
}
.l-table dl:last-of-type{
  border-bottom: var(--border);
}
section.s-bg-brandcolor .l-table dl{
  border-top: var(--border-light);
}
section.s-bg-brandcolor .l-table dl:last-of-type{
  border-bottom: var(--border-light);
}
.l-table dt{
  background: var(--bgcolor-brand-a10);
}
.s-bg-brandcolor .l-table dt{
  background: var(--bgcolor-light-a10);
}
.s-bt{
  display: inline-block;
  padding: 1.5em 2.25em;
  border-radius: 3em;
  color: var(--color);
  background-color: var(--bgcolor-light); 
  font-weight: bold;
  text-align: center;
  letter-spacing: var(--spacing-narrow);
  transition: .3s;
  &::after{
    content: '';
    display: inline-block;
    margin-left: 1em;
    width: 1em;
    height: 1em;
    background-image: url(../images/common/icon-arrow-teal.svg);
    background-repeat: no-repeat;
    background-size: 1em auto;
    vertical-align: -0.25em;
    transition: .3s;
  }
}
.s-bt:hover{
  color: var(--color-light);
  background-color: var(--color-brand);
  &::after{
    background-image: url(../images/common/icon-arrow-white.svg);
  }
}
section.s-bg-brandcolor .s-bt:hover{
  background-color: var(--bgcolor-dark);
}
.s-bt--blue{
  padding: 1em 2.25em;
  border: var(--color-brand) 0.25em solid;
  color: var(--color-light);
  background-color: var(--color-brand);
  position:relative;
  &::after{
    background-image: url(../images/common/icon-arrow-white.svg);
  }
}
.s-bt--blue:hover{
  border: var(--color-brand) 0.25em solid;
  color: var(--color);
  background-color: var(--color-light);
  &::after{
    background-image: url(../images/common/icon-arrow-teal.svg);  
  }
}
@media (width < 737px) {
  .s-bt{
    min-width: 90%;
    box-sizing: border-box;
  }
}
@media (737px <= width) {
  .s-bt{
    min-width: 15em;
  }
}

.s-bt--line{
  display: inline-block;
  margin-inline: auto;
  border-radius: 3em;
  padding: 1em 2em;
  width: 100%;
  box-sizing: border-box;
  color: var(--color-light);
  background: #00B900;
}
p:has(.s-bt--line){
  margin-block: 1em;
  text-align: center;
}
.s-link::after{
  content: url(../images/common/icon-arrow-teal.svg);
  display: inline-block;
  margin-left: 0.75em;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.s-link.s-light a{
  color: var(--color-light);
}
.s-link.s-light::after{
  content: url(../images/common/icon-arrow-white.svg);
}
.s-btn--egg{
  text-align: center;
  align-content: center;
  width: 4.25em;
  aspect-ratio: 4.25 / 6;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;  
}
.s-btn--egg a{
  align-content: center;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.s-btn--egg{
  background-image: url(../images/icon-egg-gray.svg); 
  background-size: contain;
}
.s-btn--egg:has(a){
  background-image: url(../images/icon-egg-teal.svg);
}
.s-btn--egg svg{
  width: 1em;
  height: 1em;
  stroke: var(--bgcolor-light);
}
.s-disc>li::before{
  content: '・';
  display: inline-block;
  color: var(--color-brand);
}
/*====================
SUBPAGE STYLE
====================*/
.page-header{
  padding-top: var(--header-height);
  padding-bottom: calc(var(--margin) * 6);
  width: 100%;
  background-image: url(../images/common/subpage_bg-light.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 38.85vw auto;
  overflow: hidden;
  position: relative;
}
.page-header .l-inner{
  position: relative;
  z-index: 3;
}
.page-header h1{
  margin-top: calc(var(--margin) * 12);
  font-size: 1.25em;
}
.page-header h1::after{
  content: attr(data-title);
  display: block;
  margin-top: var(--leading-trim);
  margin-left: -0.08em;
  width: max-content;
  color: transparent;
  background: var(--color) url(../images/common/title_text-light.png) no-repeat top -10% right -20%;
  background-size: 1.25em auto;
  font-size: 3.125em;
  font-family: var(--roman-font);
  font-weight: 500;
  letter-spacing: var(--spacing-title);
  background-clip: text;
  -webkit-background-clip: text;
}
@media (737px <= width) {
  .page-header h1{
    margin-top: calc(var(--margin) * 13);
  }
  .page-header h1::after{
    font-size: 6.3em;
  }
}
.breadcrumbs{
  margin-right: 0;
  text-align: right;
}
.breadcrumbs>li{
  display: inline-block;
  color: var(--palegray-a60);
  font-size: 0.75em;
}
.breadcrumbs>li a{
  color: var(--palegray-a60);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumbs>li:not(:first-child)::before{
  content: '';
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.25em;
  width: 0.4375em;
  height: 0.4375em;
  border-radius: 50%;
  background: var(--color-brand);
  vertical-align: 0.125em;
}
.page-header__bg{
  width: 100vw;
  aspect-ratio: 1/1;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-27.5%, -57.5%);
  z-index: 1;
}
.page-header__bg p{
  width: 100%;
  position: absolute;
}
.page-header__bg p:first-of-type{
  animation: spin 32s linear infinite;
}
.page-header__bg p:nth-of-type(2){
  animation: spin 27s linear infinite;
}
.page-header__bg p:nth-of-type(3){
  animation: spin 24s linear infinite;
}
@media (737px <= width) {
  .page-header__bg{
    width: 100vw;
    transform: translate(-27.5%, -67.5%);
  }
}
@media (1280px <= width) {
  .page-header__bg{
    width: 95vw;
    transform: translate(-27.5%, -72.5%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg); /* アニメーション開始時 */
  }
  100% {
    transform: rotate(360deg); /* アニメーション終了時（1周） */
  }
}
/*Style*/
section.s-radius,
div.s-radius{
  padding-block: calc(var(--margin) * 14);
  border-radius: var(--radius-large);  
}
section.s-bg-white,
div.s-bg-white{
  background: var(--bgcolor-light);
}
section.s-bg-brandcolor,
div.s-bg-brandcolor{
  color: var(--color-light);
  background: var(--bgpattern-brand);
}
section.s-bg-brandcolor a,
div.s-bg-brandcolor a{
  color: var(--color-light);
  text-decoration: underline;
  text-underline-offset: 0.375em;
}
@media (width < 737px) {
  section.s-radius,
  div.s-radius{
    padding-block: calc(var(--margin) * 10);
  }
}
/*heading style*/
.title--basic{
  font-size: 1.25em;
  font-weight: 600;
}
.title--medium{
  font-size: 1.125em;
  font-weight: 600;
}
.title--small{
  font-size: 1.125em;
  font-weight: 600;
}
.s-icon::before{
  content: url(../images/common/icon-o-teal.svg);
  display: inline-block;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.s-bar::before{
  content: '';
  display: inline-block;
  margin-right: 0.375em;
  width: 0.75em;
  height: 3px;
  background: var(--border-color-bold);
  vertical-align: 0.25em;
}
section.s-bg-brandcolor .s-icon::before{
  content: url(../images/common/icon-o-white.svg);
}
@media (737px <= width) {
  .title--basic{
    font-size: 1.75em;
  }
  .title--medium{
    font-size: 1.25em;
  }
  .s-entitle::after{
    content: attr(data-title);
    margin-left: 1em;
    font-size: 0.53em;
    font-family: var(--roman-font);
    font-weight: 500;
    vertical-align: middle;
  }
}
/*flex layout*/
.l-flex{
  display: flex;
}
@media (width < 737px) {
  .l-flex{
    flex-direction: column;
  }
  .l-flex.flex-reverse{
    flex-direction: column-reverse;
  }
  .l-flex.flex-reverse .flex-text{
    margin-top: 1em;
  }
}
@media (width < 1280px) {
  .l-flex.l-2grid{
    flex-direction: column;
  }
}
@media (737px <= width < 1280px) {
  .l-flex.l-2grid .flex__image{
    width: 75%;
  }
}
@media (1280px <= width) {
  .l-flex.l-2grid{
    justify-content: space-between;
  }
  .l-flex.l-2grid>*{
    flex-basis: 48%;
  }
}
/*form*/
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  padding: 1em;
  width: 100%;
  box-sizing: border-box;
  border: none;
  font-size: 16px;
  font-family: var(--font);
  letter-spacing: var(--spacing-narrow);
}
input[type="submit"]{
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}
.form input[type="checkbox"]{
  margin-right: 0.75em;
}
.form textarea{
  height: 12.5em;
  line-height: var(--basic-line);
}
.form small{
  display: block;
  margin-top: 0.5em;
  color: var(--text-color-pale);
}
.form dt span{
  margin-left: 1.5em;
  padding: 0 0.5em;
  width: max-content;
  box-sizing: border-box;
  border-radius: 0.25em;
  font-size: 0.75em;
  line-height: 1.7;
}
.form dt span.s-req{
  background-color: var(--color-attention);
  font-weight: bold;
}
.form dt span.s-opt{
  border: var(--color-light) 1px solid;
}
/*====================
SUBPAGE COMMPORNENT
====================*/
.subpage .l-flex{
  justify-content: space-between;
}
.subpage .flex-text{
  flex-basis: 57.5%;
}
.subpage .flex-image{
  flex-basis: 37.5%;
}
.subpage .flex-image img{
  border-radius: 0.25em;
}

.sec-title{
  font-size: 1.125em;
  font-weight: 600;
  position: relative;
}
.sec-title::before{
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../images/common/icon-o-teal.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1em auto;
  position: absolute;
  top: 0.5em;
  left: -1.25em;
}
.sec-title.s-light{
  color: var(--bgcolor-light);
}
.sec-title.s-light::before{
  background-image: url(../images/common/icon-o-white.svg);
}
@media (737px <= width) {
  .sec-title::before{
    left: -1.5em;
  }
}
.sec-title::after{
  content: attr(data-title);
  display: block;
  margin-block: var(--leading-trim);
  font-size: 3.75em;
  font-weight: 500;
  font-family: var(--roman-font);
  letter-spacing: var(--spacing-narrower);
  transform: translateX(-0.1em);
}
@media (737px <= width) {
  .sec-title::after{
    font-size: 6em;
  }
}
/*==================
Business Page
==================*/
.business .l-table{
  margin-top: 0;
}
.business .store-info:first-of-type{
  margin-top: calc(var(--margin) * 7.5);
}
.business .store-info:not(:first-of-type){
  margin-top: calc(var(--margin) * 10);
}
.store-info h3{
  margin-bottom: calc(var(--margin) * 3.2);
}
.store-info img{
  border-radius: 0.5em;
}
.store-info a{
  color: var(--color-brand);
}
.store-info .s-caption{
  margin-top: 1em;
  font-size: 0.875em;
  line-height: 1.5;
  &::before{
    content: "※";
    margin-right: 0.375em;
  }
  strong{
    font-weight: 700;
  }
}
.store-info .notice{
  margin-top: 1em;
}
@media (width < 1280px) {
  .store-info .l-flex{
    flex-direction: column-reverse;
  }
  .store-info .l-flex .flex__text{
    margin-top: calc(var(--margin) * 4);
  }
}
@media (737px <= width) {
  .business .l-table>dl>dt{
    width: 7.5em;
  }
}
.mimamori section{
  margin-top: calc(var(--margin) * 8);
}
.mimamori h2{
  margin-bottom: 1em;
}
.mimamori h3{
  margin-top: 2em;
  margin-bottom: 0.75em;
}
.mimamori p+p{
  margin-top: 0.75em
}
.mimamori p+ul{
  margin-top: 0.75em;
}
.mimamori .button{
  margin-top: 1em;
}
.mimamori__contact{
  padding: 1.5em 1.5em 2.5em 1.5em;
  border-radius: 1em;
  background: var(--bgcolor-brand-a10);
  text-align: center;
}
.mimamori__contact h2{
  margin-bottom: 0.5em;
}
@media (width < 737px) {
  .mimamori .button{
    text-align: center;
  }
}
/*==================
Recruit Page
==================*/
.recruit .sec-title{
  font-size: 0.9375em;
}
.recruit .sec-title::after{
  font-size: 3.5em;
}
@media (737px <= width) {
  .recruit .sec-title{
    font-size: 1.125em;
  }
  .recruit .sec-title::after{
    font-size: 5.3em;
  }
}
.recruit__lead-message{
  padding-bottom: 27.5vw !important;
}
.recruit__lead-message .catch{
  color: var(--color-brand);
  font-size: 1.25em;
  font-family: var(--roman-font);
  font-weight: 500;
}
.recruit__lead-message h2{
  margin-bottom: 1.75em;
  font-size: 1.75em;
  font-weight: 700;
  line-height: var(--line-narrow);
}
.recruit__lead-message .split__text p{
  font-size: 1.125em;
  font-weight: 600;
}
.recruit__lead-message .split__text p+p{
  margin-top: 1em;
}
.recruit__lead-image{
  margin-top: -18.4vw;
}
.recruit__lead-image img{
  border-radius: 2em;
}
@media (width < 737px) {
  .recruit__lead-image.l-inner{
    width: 92.5%;
  }
}
@media (737px <= width) {
  .recruit__lead-message{
    /*padding-bottom: calc(var(--margin) * 50)!important;*/
  }
  .recruit__lead-message h2{
    font-size: 2.375em;
  }
  .recruit__lead-message h2 br.is-sp{
    display: none;
  }
  .recruit__lead-image{
    /*margin-top: calc(var(--margin) * -34);*/
  }
}
@media (1280px <= width) {
  .recruit__lead-message .l-split{
    display: flex;
    justify-content: space-between;
  }
  .recruit__lead-message .split__text{
    flex-basis: 65.5%;
  }
}
.recruit__promise{
  margin-top: calc(var(--margin) * 12);
}
.recruit__promise__list{
  margin-top: calc(var(--margin) * 13);
}
.recruit__promise__list .icon{
  margin-bottom: calc(2.5em + var(--leading-trim));
  height: 6.25em;
  box-sizing: border-box;
  text-align: center;
}
.recruit__promise__list .icon img{
  height: 100%;
  width: auto;
}
.recruit__promise__list>li:first-child .icon{
  padding-top: 0.625em;
}
.recruit__promise__list h3{
  margin-bottom: calc(1.25em + var(--leading-trim));
  font-size: 1.5em;
  font-weight: 700;
  line-height: var(--line-narrow);
}
.recruit__promise__list h3+p{
  font-size: 0.9375em;
}
.recruit__promise .button{
  margin-top: calc(var(--margin) * 6);
  text-align: center; 
}
@media (width < 737px) {
  .recruit__promise__list>li:not(:first-child){
    margin-top: 3.75em;
  }
}
@media (737px <= width) {
  .recruit__promise__list{
    display: flex;
  }
}
@media (737px <= width < 1280px) {
  .recruit__promise__list{
    margin-top: calc(var(--margin) * 7.5);
    justify-content: space-between;
  }
  .recruit__promise__list>li{
    flex-basis: calc((100% - 3em) / 3);
  }
  .recruit__promise__list .icon{
    height: 5.5em;
  }
  .recruit__promise__list h3{
    font-size: 1.375em;
  }
  .recruit__promise__list h3 br{
    display: none;
  }
}
@media (1280px <= width) {
  .recruit__promise__list{
    justify-content: space-around;
  }
  .recruit__promise__list .icon{
    margin-bottom: calc(4.5em + var(--leading-trim));
  }
  .recruit__promise__list>li{
    flex-basis: calc((100% - 22em) / 3);
  }
  .recruit__promise__list h3{
    font-size: 1.75em;
  }
}
.recruit__interview{
  margin-top: calc(var(--margin) * 18);
  padding-top: calc(var(--margin) * 10);
  position: relative;
}
.recruit__interview bg{
  border-top-right-radius: 5em;
  display: block;
  width: 82.5%;
  aspect-ratio: 3/4;
  background: url(../images/common/bg-pattern-cta01.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.recruit__interview__inner{
  position: relative;
  z-index: 3;
}
.recruit-interview__slide-area{
  margin-top: calc(var(--margin) * 7.5);
}
.recruit-interview__list .photo{
  aspect-ratio: 430/576;
}
.recruit-interview__list .photo{
  border-radius: 1.25em;
  overflow: hidden;
}
.recruit-interview__list .photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-interview__list .photo{
  background: var(--bgcolor-light);
}
.recruit-interview__list h3{
  margin-top: 1em;
  font-size: 1.75em;
  font-weight: 700;
  line-height: var(--line-narrow);
}
.recruit-interview__list .title{
  margin-top: 2.75em;
  font-size: 0.875em;
}
.recruit-interview__list .name{
  font-size: 1.25em;
  font-weight: 600;
}
.recruit-interview__list .name::after{
  content: attr(data-roman);
  margin-left: 1em;
  color: var(--color-brand);
  font-size: 0.875em;
  font-family: var(--roman-font);
  font-weight: 500;
}
.splide-progress {
  margin-top: calc(var(--margin) * 14);
  margin-inline: auto;
  width: 90%;
  background: var(--bgcolor-pale);
  border-radius: 2px;
}
.splide-progress-bar {
  background: var(--color-brand);
  height: 5px;
  border-radius: 2px;
  transition: width 400ms ease;
  width: 0;
}
@media (737px <= width) {
  .recruit__interview bg{
    aspect-ratio: 4/3;
  }
}
@media (1280px <= width) {
  .recruit__interview{
    padding-top: calc(var(--margin) * 14);
  }
  .recruit__interview bg{
    width: 78.5%;
    aspect-ratio: 1256/660;
  }
  .recruit-interview__slide-area{
    margin-top: calc(var(--margin) * 10);
  }
  .recruit-interview__list a:hover{
    transition: .3s;
  }
  .recruit-interview__list .photo a:hover img{
    opacity: 0.85;
  }
  .recruit-interview__list h3 a:hover{
    color: var(--color-brand);
  }
}
/*Recruit Entry Form*/
.recruit__statement{
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (737px <= width) {
  .recruit__statement{
    font-size: 2em;
  }
}
.recruit__requirement__title{
  margin-top: calc(var(--margin) * 13.5);
}
.recruit__entry-list{
  margin-top: calc(var(--margin) * 10);
}
.recruit__entry-list>li{
  padding-top: calc(var(--margin) * 14);
  padding-bottom: 2.5em;
  padding-inline: 2.5em;
  border-radius: var(--radius-small);
  box-sizing: border-box;
  flex-basis: calc((100% - 3.125em) / 2);
}
.recruit__entry-list>li.mail{
  color: var(--color-light);
  background: url(../images/common/cta_mail.svg), var(--bgpattern-brand);
  background-repeat: no-repeat, repeat;
  background-position: 2.5em 2em, left top;
  background-size: 3em auto, auto auto;  
}
.recruit__entry-list>li.line{
  background: var(--bgcolor-pale);
  background-image: url(../recruit/images/LINE_Brand_icon.png);
  background-repeat: no-repeat;
  background-position: 2.5em 1.75em;
  background-size: 2.875em auto;  
}
.recruit__entry-list>li h3{
  font-size: 1.25em;
}
.recruit__entry-list>li p{
  font-size: 0.935em;
  letter-spacing: var(--spacing-narrow);
}
.recruit__entry-list>li.mail p a{
  color: var(--color-light);
  text-decoration: underline;
  text-underline-offset: 0.375em;
}
.recruit__entry--line__btn{
  margin-top: 1.5em;
}
.recruit__entry--line__btn .s-bt{
  padding-block: 1.5em;
  padding-inline: 0;
  width: 100%;
  box-sizing: border-box;
  background-position: center right 1.5em;
}
@media (width < 737px) {
  .recruit__entry-list>li:not(:first-child){
    margin-top: 2.5em;
  }
  .recruit__entry-list>li.line .img__qr-code{
    display: none;
  }
}
@media (737px <= width) {
  .recruit__entry-list{
    display: flex;
    justify-content: space-between;
  }
  .recruit__entry-list>li{
    padding: calc(var(--margin) * 14) 2.5em 2.5em 2.5em;
    flex-basis: calc((100% - 3.125em) / 2);
  }
  .recruit__entry-list>li.mail{
    background-position: 2.5em 3em, left top;
    background-size: 4em auto, auto auto;  
  }
  .recruit__entry-list>li.line{
    background-position: 2.5em 2.5em;
    background-size: 4em auto;  
  }
  .recruit__entry-list>li.line img{
    width: 5.875em;
    height: 5.875em;
  }
  .recruit__entry--line__btn{
    display: none;
  }
}
@media (737px <= width < 1280px) {
  .recruit__entry-list .img__qr-code{
    margin-top: 1em;
    text-align: center;
  }
}
@media (1280px <= width) {
  .recruit__entry-list>li.line .flex-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .recruit__entry-list>li.line img{
    margin-left: 4em;
  }
}
.recruit__entry-form{
  margin-top: calc(var(--margin) * 16);
}
section.s-radius.recruit__entry-form{
  padding-bottom: calc(var(--margin) * 16);
}
.recruit__entry-form__submit{
  margin-top: calc(var(--margin) * 6);
  margin-inline: auto;
  text-align: center;
}
.recruit__entry-form__submit .s-bt{
  padding-block: 2em;
  width: 87.5%;
  font-size: 1rem;
}
@media (737px <= width) {
  .recruit__entry-form__submit .s-bt{
    padding-block: 2em;
    width: 26.875em;
    font-size: 1rem;
  }
}
/*Interview Page*/
.interview{
  counter-reset: interview-section;
}
.interview .page-header{
  padding-top: calc(var(--margin) * 6 + var(--header-height));
  padding-bottom: 0;
  position: relative;
}
.interview .page-header .l-inner{
  position: relative;
}
.interview .breadcrumbs{
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.interview .page-header h1{
  margin-top: calc(2em + var(--leading-trim));
}
.page-header .interview__title{
  padding-top: 1em;
  font-size: 1.875em;
  line-height: var(--line-narrow);
  position: relative;
  z-index: 3;
}
.page-header .interview__title::after{
  color: var(--bgcolor-light);
  background: transparent;
  font-size: 2.5em;
  position: absolute;
  top: 0;
  left: -0.25em;
  z-index: -1;
}
.interview__profile{
  margin-top: calc(var(--margin) * 5.5);
  padding-left: 1.25em;
  border-left: var(--color-brand) 0.25em solid;
  line-height: 1;
  position: relative;
  z-index: 3;
}
.interview__profile .title{
  font-weight: 600;
}
.interview__profile .name{
  margin-top: 0.65em;
  font-size: 1.375em;
  font-weight: 700;
}
.interview__profile .name::after{
  content: attr(data-roman);
  margin-left: 1em;
  color: var(--color-brand);
  font-size: 0.65em;
  font-family: var(--roman-font);
  font-weight: 500;
  vertical-align: middle;
}
.interview__photo{
  width: 100%;
  z-index: 1;
}
@media (width < 737px) {
  .interview__profile .title{
    font-size: 0.875em;
  }
  .interview__profile .name{
    font-size: 1.25em;
  }
  .interview__photo{
    margin-top: calc(var(--margin) * 8);
  }
}
@media (737px <= width) {
  .interview .page-header .l-inner{
    padding-bottom: calc(var(--margin) * 16);
  }
  .page-header .interview__title{
    font-size: 2.5em;
  }
  .page-header .interview__title::after{
    font-size: 3.15em;
  }
  .interview__profile{
    margin-top: calc(var(--margin) * 7);
    padding-left: 2em;
  }
  .interview__profile .name{
    margin-top: 0.65em;
    font-size: 1.75em;
  }
  .interview__photo{
    width: 50%;
    position: absolute;
    bottom: -6.875em;
    right: 0;
  }
}
@media (737px <= width < 1280px) {
  .interview .page-header .l-inner{
    width: 87.5%;
  }
}
@media (1280px <= width) {
  .page-header .interview__title{
    padding-top: 1.65em;
    padding-left: 1.9em;
  }
  .page-header .interview__title::after{
    left: 0;
  }
  .interview__profile{
    margin-left: 4.75em;
  }
  .interview__photo{
    width: 42%;
    bottom: -6.875em;
    right: 5%;
  }
}
.interview section{
  counter-increment: interview-section;
}
.interview__upper{
  margin: auto;
  width: 78.125%;
}
.interview section:first-of-type{
  margin-top: calc(var(--margin) * 4);
}
.interview section:not(:first-of-type){
  margin-top: calc(var(--margin) * 15.4);
}
.interview h2{
  font-size: 1.375em;
  line-height: 1.625;
}
.interview h2::before{
  content: "Q."counter(interview-section);
  display: block;
  padding-bottom: 0.5em;
  color: var(--color-brand);
  font-size: 0.75em;
  font-family: var(--roman-font);
  font-weight: 500;
  letter-spacing: 0;
}
.interview h2+p{
  margin-top: 2.5em;
}
.interview img{
  border-radius: 1.25em;
}
.intervew--message__image{
  margin-top: 2em;
}
@media (737px <= width) {
  .interview section:first-of-type{
    margin-top: calc(var(--margin) * 8);
  }
  .interview section:not(:first-of-type){
    margin-top: calc(var(--margin) * 15.4);
  }
  .interview h2{
    font-size: 2em;
  }
  .interview h2::before{
    font-size: 0.625em;
  }
}
@media (width < 1280px) {
  .interview{
    margin-top: calc(var(--margin) * -8);
  }
  .interview h2 br{
    display: none;
  }
  .interview .flex__image{
    margin-top: 2em;
  }
}
@media (737px <= width < 1280px) {
  .interview .flex__image,
  .intervew--message__image{
    margin-top: 3.75em;
  }
}
@media (1280px <= width) {
  .interview section:first-of-type{
    margin-top: calc(var(--margin) * 12);
  }
  .interview__upper section{
    display: flex;
    justify-content: space-between;
  }
  .interview__upper section>*{
    flex-basis: 46.75%;
  }
  .interview__upper section:nth-of-type(odd){
    flex-direction: row-reverse;
  }
  .intervew--message__text{
    margin: auto;
    width: 72%;
  }
  .intervew--message__image{
    margin-top: calc(var(--margin) * 10);
  }
}
/*Contact Form*/
.contact__form-list{
  margin-block: 2.5em;
}
@media (width < 737px) {
  .contact__form-list>li{
    text-align: center;
  }
  .contact__form-list>li:not(:first-child){
    margin-top: 1.5em;
  }
  .contact__form-list .s-bt{
    padding: 1.5em 5.25em 1.5em 3em;
  }
}
@media (737px <= width) {
  .contact__form-list{
    display: flex;
  }
  .contact__form-list>li:not(:first-child){
    margin-left: 2.5em;
  }
}
/*Company*/
.company h3{
  margin-top: calc(var(--margin) * 6);
}
.company h3+.l-table{
  margin-top: calc(var(--margin) * 2);
}
@media (737px <= width) {
  .company .l-table>dl>dt{
    width: 13.375em;
  }
}
/*news*/
.news-archive h2+p{
  margin-top: 1em;
}
.news-list{
  margin-top: 3em;
}
.news-list li{
  padding-block: 1.5em;
  border-top: var(--border);
}
.news-list li:last-child{
  border-bottom: var(--border);
}
.news-list .up_ymd,
.news-list .title{
  display: block;
}
.news-list .title{
  padding-right: 3em;
  width: 100%;
  box-sizing: border-box;
  background-image: url(../images/common/icon-arrow-teal.svg);
  background-repeat: no-repeat;
  background-position: center right 0.5em;
  background-size: 1em auto;
}
.news-list .title a{
  color: var(--color);
}
.news-list .title a:hover{
  color: var(--color-brand);
}
.news-archive .pager{
  margin-top: 3em;
  text-align: center;
}
.news-archive .pager a{
  display: inline-block;
  margin: 0.5em;
  padding: 0.5em;
  font-family: var(--number-font);
}
@media (737px <= width) {
  .news-list .up_ymd,
  .news-list .title{
    display: inline-block;
  }
  .news-list .up_ymd{
    width: 8em;
  }
  .news-list .title{
    padding-left: 3em;
    width: calc(100% - 8.5em);
    background-position: center right 1.5em;
  }
}
/*news article*/
.article__date{
  font-size: 0.875em;
  font-family: var(--number-font);
}
.article__contents{
  margin-top: 3em;
  margin-bottom: 3em;
  a:not([class]){
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 0.375em;
  }
  h2{
    margin-top: 3em;
    margin-bottom: 0.5em;
    font-size: 1.25em;
    font-weight: 600;
  }
  h2::before{
    content: url(../images/common/icon-o-teal.svg);
    display: inline-block;
    margin-right: 0.25em;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
  }
  h3{
    margin-top: 1.5em;
    font-size: 1.125em;
    font-weight: 600;
  }
  ul{
    margin-top: 1em;
  }
  dd ul, li ul{
    margin-top: 0;
  }
  .map iframe{
    width: 100%;
    aspect-ratio: 9/5;
  }
  .s-circle>li::before{
    content: "";
    display: inline-block;
    margin-right: 0.25em;
    width: 0.625em;
    height: 0.625em;
    border-radius: 50%;
    background: var(--color-brand);
  }
  .s-circle>li>dl{
    display: inline;
  }
  .box-information{
    margin-top: 2.5em;
    padding: 1em 1.5em;
    border: 1px solid var(--color-brand);
    border-radius: 1em;
    @media (737px <= width) {
      &&{
        padding: 1.5em 2.5em;
      }
    }
    h2,h3{
      margin-top: 0;
      margin-bottom: 0.5em;
      font-size: 1.125em;
      font-weight: 600;
      &&::before{
        content: '';
        display: inline-block;
        margin-right: 0.375em;
        width: 0.75em;
        height: 3px;
        background: var(--border-color-bold);
        vertical-align: 0.25em;
      }
    }
    .l-table{
      margin-top: 0;
    }
    .l-table>dl{
      margin: 0;
      border: none;
    }
    .l-table>dl>*{
      padding: 0;
      background: transparent;
    }
    .s-circle>dl>dt::before{
      content: '';
      display: inline-block;
      margin-right: 0.5em;
      width: 0.625em;
      height: 0.625em;
      border-radius: 50%;
      background: var(--color-brand);
    }
    @media (width < 737px) {
      .l-table>dl:not(:first-of-type){
        margin-top: 0.75em;
      }
    }
    @media (737px <= width) {
      .l-table>dl{
        display: table;
        table-layout: fixed;
      }
      .l-table>dl>*{
        display: table-cell;
        padding: 0.25em;
      }
      .l-table>dl>dt{
        width: 6em;
      }
      .l-table>dl>dd{
        padding-left: 1em;
        width: calc(100% - 6em);
        box-sizing: border-box;
      }
    }
  }
  .qr-image{
    margin-top: 0.75em;
    border: var(--border);
    width: 8em;
    height: 8em;
  }
}
/*for news-page*/
.news-single .article__contents img{
  margin: calc(var(--margin) * 6) auto;
  width: 82.5%;
}
.news-single .article__contents b{
  font-weight: bold;
}
.news-single .article__contents i{
  font-style: normal;
}
.news-single .article__contents u{
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.news-single .article__contents ul>li::before{
  content: '';
  display: inline-block;
  margin-right: 0.5em;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: var(--color-brand);
  vertical-align: 0.1875em;
}
.news-single .article__contents ol{
  counter-reset: list-item;
}
.news-single .article__contents ol>li{
  counter-increment: list-item 1;
}
.news-single .article__contents ol>li::before{
  content: counter(list-item)".";
  margin-right: 0.5em;
  font-family: var(--number-font);
  font-weight: 600;
}
/*terms*/
.terms-list{
  counter-reset: terms-article;
}
.terms-list>li{
  counter-increment: terms-article 1;
}
.terms-list>li h2::before{
  content: counter(terms-article)".";
  margin-right: 0.5em;
}
.terms-list>li>ol{
  counter-reset: terms-item;  
}
.terms-list>li>ol>li{
  counter-increment: terms-item 1;  
}
.terms-list>li>ol>li h3::before{
  content: "("counter(terms-item)")";
  }
  .terms-list>li h2{
    margin-top: 2em;
    margin-bottom: 0.75em;
    padding: 0.5em 1em;
    color: var(--color-light);
    background: var(--bgcolor-brand);
    line-height: var(--line-narrow);
  }
  .terms-list>li h3{
    margin-top: 1.5em;
  }
  .terms-list>li p+p{
    margin-top: 0.75em;
  }
  .terms-list>li ul{
    margin-top: 1em;
  }
  .terms-list>li p a{
    color: var(--color-brand);
    font-weight: 600;
  }
  .terms .page-header h1::after{
    background-size: 1.5em auto;
  }
  @media (width < 737px) {
    .terms .page-header h1::after{
      font-size: 2.5em;
    }
  }
  @media (737px <= width) {
    .terms-list>li h2{
      margin-top: 3em;
      margin-bottom: 1.5em;
      padding: 1.5em 2em;
    }
    .terms-list>li h3{
      margin-top: 1.5em;
    }
  }