:root {
    --color-txt: #000000;
    --color-green: #9AC717;
    --color-pink1: #FD9495;
    --color-pink2: #DE8586;
    --color-pink3: #E33739;
    --color-gray1: #707070;
    --color-gray2: #D5D3D3;
    --font-base: "Zen Kaku Gothic New", sans-serif;
    --font-en: "Lato", sans-serif;
    --font-hannari: "Hannari Mincho","游明朝","YuMincho",serif;
    --font-size-base: 1.4rem;
    --rem-base: 10;
    --viewport-min: 375;
    --breakpoint-sp: 768;
    --content-max-width: 1232;
    --breakpoint-pc: 1432;
    --viewport-max: 1480;
    --space-md: 2.5em;
    --space-lg: 5em;
}
html { font-size: calc(10 / var(--viewport-min) * 100vw); }
@media screen and (min-width: 768px) {
    :root {
        --font-size-base: 1.6rem;
        --space-md: 5em;
        --space-lg: 10em;
    }
    html { font-size: calc(10 / var(--breakpoint-pc) * 100vw);}
}
@media screen and (min-width: 1432px) {
    html { font-size: 62.5%; }
}
*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  font-optical-sizing: auto;
  line-height: 1.6em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-txt);
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  margin: 0;
}
ul, ol, li {
  list-style: none;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  transition: .3s;
  word-break: break-word;
  overflow-wrap: break-word;
  color: var(--color-txt);
}
.color-green a {
  color: var(--color-green);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
picture img,figure img {
  width: 100%;
  height: auto;
}
input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="submit"], input[type="button"] {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
  font-weight: 700;
  line-height: 1em;
  font-size: 1em;
  text-rendering: optimizeLegibility;
}
p {
  line-height: 2em;
}
p.clear {
  margin-bottom: 1em;
}
small {
  font-size: 0.875em;
}
strong {
	font-size: 1.25em;
	font-weight: 700;
}
b {
	font-weight: 700;
}
a.txtlink { text-decoration: underline;}
a.txtlink:hover { text-decoration: none; }
.clear {
  clear: both;
  display: block;
  overflow: hidden;
}
p.clear {
  margin-bottom: 1em;
}
p:has(small) {
  line-height: 2em;
}
.textleft { text-align: left; }
.textright { text-align: right; }
.textcenter { text-align: center; }
.--color-pink1 { color: var(--color-pink1);}
.--color-pink2 { color: var(--color-pink2);}
.--color-pink3 { color: var(--color-pink3);}
.--margin__lg { margin-top: var(--space-lg); margin-bottom: var(--space-lg);}
.--margin__lg-top { margin-top: var(--space-lg); }
.--margin__md { margin-top: var(--space-md); margin-bottom: var(--space-md);}
.--margin__md-top { margin-top: var(--space-md);}
.font-han { font-family: var(--font-hannari); }
.font-en { font-family: var(--font-en); }
.color-green { color: var(--color-green);}
.bg-pink { background-color: #FFF6F6;}
.bg-green { background-color: #F4F9E6;}
@media only screen and (max-width:767px) {
  .pc { display: none !important; }
  .--sp-textright { text-align: right; }
  .--sp-center { text-align: center; }
}
@media only screen and (min-width: 768px) {
  .sp { display: none !important; }
  a img,.hover-op a { transition: .3s;}
  .hover-op a:hover { opacity: .7; }
}
/** list **/
.list > li {
	padding-left: 1.25em;
  line-height: 2em;
	position: relative;
}
.list > li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.list.list-maru > li::before {
	content: "●";
}
.list.list-nom > li::before {
	content: "・";
}
.list.list-note > li::before {
	content: "※";
}
ol.list-mark {
	counter-reset: item;
}
ol.list-mark > li {
	padding-left: 1.95em;
  position: relative;
}
ol.list-mark > li:before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  display: block;
  width: 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.wrapper { overflow: hidden;}
.container {
    display: block;
    padding-left: 1em;
    padding-right: 1em;
    margin: 0 auto;
    width: 100%;
}
.container__inner {
    padding: 5em 0;
}
.content {
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
}
/** header **/
body.admin-bar .header {
    top: 32px;
}
.header {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}
.header .header__area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 5.8rem;
    z-index: 100;
}
.header .header__logo {
    margin: 0 1em;
}
.header .header__logo a {
    display: flex;
    gap: .75em;
    align-items: flex-end;
}
.header .header__logo img {
    width: 11rem;
}
.header .header__logo .header__logo--name {
    line-height: 1em;
}
.hamburger__nav {
    display: none;
}
/** animation **/
.animation-img {
    display: flex;
    align-items: center;
}
.animation-img figure:nth-child(1){
    width: 18.9rem;
    animation: jitter1 2s step-end infinite;
    transform: rotate(-5deg);
}
.animation-img figure:nth-child(2){
    width: 7.7rem;
    animation: jitter1 2.5s step-end infinite;
    transform: rotate(-2.5deg);
}
.animation-img figure:nth-child(3){
    width: 11rem;
    margin-top: 2.5rem;
    animation: jitter1 1.5s step-end infinite;
    transform: rotate(-5deg);
}
.animation-img figure:nth-child(4){
    width: 14.2rem;
    margin-top: 8rem;
}
@keyframes jitter1 {
   0%, 100% { transform: rotate(-5deg); }
   50% { transform: rotate(5deg); }
}
@keyframes jitter2 {
   0%, 100% { transform: rotate(-2.5deg); }
   50% { transform: rotate(-2.5deg); }
}
/** footer **/
.sec-googlemap {
    width: 100%;
    height: 24rem;
}
.sec-googlemap iframe {
    width: 100%;
    height: 100%;
}
.sec-sponsor {
	background-color: #f4f4f4;
	overflow: hidden;
    padding-top: var(--space-md);
}
.sec-sponsor__ttl {
    text-align: center;
    background-image: url('../images/icon_smile-bl.svg');
    background-size: 1em auto;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 3em;
}
.sponsor__ttl .page-ttl--en {
    font-size: 1.125em;
}
.page-ttl--en {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: .1em;
}
.sponsor-bnr {
	display: grid;
	grid-template-columns: 1fr;
	gap: .5em;
	margin: 3em auto;
}
.sponsor-bnr ul {
	display: grid;
	gap: .5em;
}
.sponsor-bnr ul.sponsor-bnr__gold {
	grid-template-columns: repeat(2 ,1fr);
}
.sponsor-bnr ul.sponsor-bnr__silver {
	grid-template-columns: repeat(3 ,1fr);
}
.sponsor-bnr ul.sponsor-bnr__bronze {
	grid-template-columns: repeat(4 ,1fr);
}
.footer {
    margin-bottom: 5em;
    padding-top: 3em;
    position: relative;
}
.footer .page-top {
   position: absolute;
   top: -6.1rem;
   right: 0;
   z-index: 10;
   width: 7.3rem;
   display: block;
   aspect-ratio: 146/122;
}
.footer .page-top span {
    font-size: .85em;
    font-family: var(--font-en);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: -1.5em;
}
.footer .footer__info-logo img {
    width: 12em;
    margin: 0 auto 2em auto;
}
.footer .footer__info-addr p {
    line-height: 1.6em;
    text-align: center;
}
.footer__nav--sns {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 2em auto;
}
.footer__nav--sns img {
    width: auto;
    height: 1.5em;
}
.footer__copy {
    margin-top: 1.5em;
    text-align: center;
}
.footer__copy .copy {
    font-size: 1rem;
    font-family: var(--font-en);
    font-weight: 500;
}
/** post card **/
.cards {
    display: grid;
    row-gap: 1.5em;
}
.cards article a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1em;
}
.cards article .card__img {
	aspect-ratio: 1.5 / 1;
	display: block;
	overflow: hidden;
}
.cards article .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.cards article a:hover .card__img img {
  transform: scale(1.1);
}
.post__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;margin-bottom: 1em;
}
.post__meta .post__date {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 1.4rem;
}
.post__meta .post__cat .cat {
    padding: .2em .5em;
    font-size: 1.2rem;
    line-height: 1em;
    font-weight: 700;
    background-color: var(--color-green);
    color: white;
}
.post__ttl {
    font-weight: 500;
    line-height: 1.6em;
}
/** page **/
.media-content {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin: var(--space-lg) 0;
}
.media-content picture {
    transform: translateX(-1em);
    width: 100vw;
}
.media-content .media-content__txt .page__ttl {
    margin-bottom: 1.5em;
}
.media-content .media-content__txt .button {
    margin-top: 2em;
}
.heading {
    background-color: var(--color-green);
    width: 100%;
    height: 25rem;
}
.heading.--bgimage {
    width: 100%;
    position: relative;
}
.heading.--bgimage picture img {
    height: 100%;
    width: auto;
    object-fit: cover;
}
.heading .container {
    position: relative;
    height: 100%;
}
.heading .heading__ttl {
    color: white;
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    text-align: center;
}
.heading .heading__ttl--jp {
    font-size: 2em;
    line-height: 1.2em;
}
.heading .heading__ttl.--logoimage img {
    width: 7em;
}
.breadcrumbs {
    margin-top: .25em;
    font-size: 1.2rem;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1em !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--color-green) !important;
    width: 2em;
    height: 2em;
    background-color: transparent;
    border-radius: 50%;
}
.swiper-button-next {
    right: -1em !important;
}
.swiper-button-prev {
    left: -1em !important;
}
.c-fix-btn {
    position: fixed;
    bottom: .5em;
    right: .5em;
    z-index: 98;
    width: auto-fit;
}
.c-fix-btn .js-bnr-close {
    display: block;
    font-size: 1.125em;
    width: 1.75em;
    height: 1.75em;
    line-height: 1.5em;
    text-align: center;
    background-color: white;
    color: #666;
    border-radius: 50%;
    position: absolute;
    top: -2em;
    right: 0;
    cursor: pointer;
}
.c-fix-btn ul {
    display: flex;
    gap: 1em;
}
.c-fix-btn a {
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: .5em;
    align-items: center;
    color: white;
    border-radius: 1em;
}
.c-fix-btn a.c-fix-btn__ichigo {
    background-color: var(--color-pink3);
}
.c-fix-btn a.c-fix-btn__online {
    background-color: var(--color-pink1);
}
.c-fix-btn .c-fix-btn--jp {
    font-size: 1em;
    position: relative;
    padding-left: 1.75em;
}
.c-fix-btn .c-fix-btn--jp::before {
    content: "";
    display: block;
    width: 1.25em;
    height: 1.25em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.c-fix-btn a.c-fix-btn__ichigo .c-fix-btn--jp::before {
    background-image: url('../images/icon_ichigo-white.svg');
}
.c-fix-btn a.c-fix-btn__online .c-fix-btn--jp::before {
    background-image: url('../images/icon_cart-white.svg');
}
.c-fix-btn a .c-fix-btn--en {
    font-family: var(--font-en);
    font-weight: 700;
    font-style: italic;
}
.c-fix-btn a.c-fix-btn__online .c-fix-btn--en {
    font-size: 1.25em;
}
@media only screen and (max-width:767px){
    .header__nav,.header__button {
        display: none;
    }
    body.admin-bar .header,
    body.admin-bar.nav_open .header {
        top: 46px;
    }
    body.nav_open {
        overflow: hidden;
    }
    .hamburger {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 101;
    }
    .hamburger__btn {
        width: 3.25em;
        height: 3.25em;
        text-align: center;
        position: absolute;
        top: 0;
        right: 0;
    }
    .hamburger__btn span {
        position: relative;
        display: block;
        width: 50%;
        height: 50%;
        margin: 25% auto;
    }
    .hamburger__btn::before,
    .hamburger__btn span::before,
    .hamburger__btn span::after {
        content: " ";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333333;
        position: absolute;
        right: 0;
        transition: all .3s;
    }
    .hamburger__btn::before {
        width: 40%;
        right: 25%;
        top: 50%;
    }
    .hamburger__btn span::before {
        top: 20%;
    }
    .hamburger__btn span::after {
        top: 80%;
    }
    .navi_open .hamburger__btn::before {
        opacity: 0;
        right: 0;
        width: 0;
    }
    .navi_open .hamburger__btn span::before {
        transform: rotate(45deg);
        top: 50%;
    }
    .navi_open .hamburger__btn span::after {
        transform: rotate(-45deg);
        top: 50%;
    }
    .hamburger__nav {
        background-color: white;
        padding: 3em 2em 2em 2em;
        -webkit-transition:ease .3s;
        transition: ease .3s;
        height: 100dvh;
        width: 80%;
        white-space: nowrap;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        opacity: 0;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
    }
    .hamburger__nav::-webkit-scrollbar {
        display:none;
    }
    .navi_open .hamburger__nav {
        opacity: 1;
        display: block;
    }
    .overlay {
        background-color: #000;
        cursor: pointer;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transition: all 0.6s;
        visibility: hidden;
        opacity: 0;
    }
    .navi_open .overlay {
        opacity: 0.5;
        visibility: visible;
    }
    .hamburger__nav--links ul {
        display: flex;
        flex-direction: column;
        gap: 1.25em;
        font-size: 1.2rem;
        margin-bottom: 2em;
    }
    .hamburger__nav .nav__links a {
        position: relative;
        padding: .5em 0;
        color: #333333;
    }
    .hamburger__nav .nav__links a::before {
        content: "";
        display: block;
        width: .75em;
        height: 1px;
        background-color: #333333;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .hamburger__nav--links ul.nav__botton {
        gap: .5em;
    }
    .hamburger__nav .nav__botton a {
        display: block;
        border: 1px solid #333333;
        text-align: center;
        padding: .5em;
    }
    .hamburger__nav .nav__botton a span {
        padding-left: 2em;
        background-repeat: no-repeat;
        background-size: 1.25em auto;
        background-position: left center;
        font-size: 1.2rem;
    }
    .hamburger__nav .nav__botton .nav__botton--tel a span {
        background-image: url('../images/icon_tel.svg');
        font-family: var(--font-en);
    }
    .hamburger__nav .nav__botton .nav__botton--mail a span {
        background-image: url('../images/icon_mail.svg');
    }
    .hamburger__nav .nav__botton .nav__botton--cart a span {
        background-image: url('../images/icon_cart2.svg');
    }
    .c-fix-btn {
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .c-fix-btn .js-bnr-close {
        font-size: 1em;
        width: 1.5em;
        height: 1.5em;
        border-radius: 0;
        top: -1.5em;
    }
    .c-fix-btn ul {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }
    .c-fix-btn a {
        border-radius: 0;
    }
    .c-fix-btn a .c-fix-btn--en {
        display: none;
    }
    /** footer **/
    .footer__nav {
        display: flex;
        justify-content: space-between;
        gap: .5em;
        margin-top: 2.5em;
    }
    .footer__nav ul {
        border-left: 2px solid #333;
        padding-left: .75em;
        gap: .5em;
        display: flex;
        flex-direction: column;
        font-size: .95em;
        letter-spacing: 0;
    }
}
@media (min-width: 768px) {
    .container {
        width: calc(var(--content-max-width) / var(--rem-base) * 1rem);
        padding-left: 1em;
        padding-right: 1em;
    }
    .header {
        background-color: rgb(255, 255, 255, .7);
    }
    .header.fixed {
        position: fixed;
        animation: fade01 .5s ease-in-out;
        background-color: rgba(255, 255, 255, .7);
    }
    @keyframes fade01 {
        from { opacity: 0; transform: translateY(-10%); }
        to { opacity: 1; transform: translateY(0); }
    }
    .header .header__area {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 8rem;
        padding: 0 1.5em;
    }
    .header .header__logo img {
        width: 10em;
    }
    .header__nav ul {
        display: flex;
        align-items: center;
        column-gap: 2em;
    }
    .header__nav a:hover {
        color: var(--color-green);
    }
    /** footer **/
    .sec-googlemap {
        height: 40rem;
    }
	.sponsor-bnr {
		margin: 6em auto;
	}
	.sponsor-bnr,.sponsor-bnr ul {
		gap: 1.5em;
	}
	.sponsor-bnr a:hover {
		opacity: .7;
	}
	.sponsor-bnr ul.sponsor-bnr__gold {
		grid-template-columns: repeat(3 ,1fr);
	}
	.sponsor-bnr ul.sponsor-bnr__silver {
		grid-template-columns: repeat(4 ,1fr);
	}
	.sponsor-bnr ul.sponsor-bnr__bronze {
		grid-template-columns: repeat(5 ,1fr);
	}
    .footer {
        padding-top: 5em;
    }
    .footer .container {
        position: relative;
    }
    .footer .container .animation-img {
        position: absolute;
        top: 0;
        right: 0;
    }
    .footer .page-top {
        top: -12.2rem;
        width: 14.6rem;
    }
    .footer .page-top span {
        left: 0;
        top: 1em;
    }
    .footer .footer__info-logo img {
        margin: 0;
    }
    .footer .footer__info-addr p {
        text-align: left;
        font-size: 1em;
    }
    .footer .footer__info-addr {
        margin: 2.5em 0;
    }
    .footer__nav ul {
        display: flex;
        flex-direction: row;
        margin-bottom: .75em;
    }
    .footer__nav ul li {
        padding-right: 2em;
        position: relative;
    }
    .footer__nav ul li::after {
        content: "";
        display: block;
        width: 1px;
        height: 1em;
        background-color: black;
        position: absolute;
        right: 1em;
        top: 50%;
        transform: translateY(-50%);
    }
    .footer__nav > ul li:last-child::after {
        display: none;
    }
    .footer__nav--sns {
        display: flex;
        justify-content:left;
        margin: 2em auto 3em auto;
    }
    .footer__copy {
        text-align: left;
    }
    /** post card **/
    .cards {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2.5em;
        row-gap: 0;
    }
    .cards.cards__archive {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 2.5em;
        row-gap: 2.5em;
    }
    .cards article a {
        grid-template-columns: 1fr;
        row-gap: 1em;
    }
    .cards article .card__img {
        padding: 0;
    }
    .post__meta .post__cat .cat {
        font-size: 1.4rem;
    }
    /** page ***/
    .media-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .media-content.--lay-reverse {
        flex-direction: row-reverse;
    }
    .media-content .media-content__img {
        display: block;
        width: 61rem;
    }
    .media-content .media-content__txt {
        display: block;
        width: 50rem;
    }
    .media-content .media-content__img picture img {
        max-width: 75rem !important;
        width: 75rem !important;
    }
    .media-content .media-content__img picture img {
        transform: translateX(-14rem);
    }
    .media-content.--lay-reverse .media-content__img picture img {
        transform: translateX(0);
    }
    .heading {
        height: 39rem;
    }
    .heading.--bgimage {
        height: auto;
    }
    .heading.--bgimage picture img {
        width: 100%;
        height: 48rem;
        object-fit: cover;
    }

    .heading .heading__ttl--jp {
        font-size: 2.5em;
    }
    .heading .heading__ttl--en {
        font-size: 1.125em;
    }
    .heading .heading__ttl.--logoimage img {
        width: 10em;
    }
    .breadcrumbs {
        font-size: 1.4rem;
    }
}

.ttl-icon {
    padding-left: 2em;
    color: var(--color-green);
    position: relative;
    display: block;
    margin: .5em 0 2em 0;
    letter-spacing: .1em;
    font-weight: 700;
}
.ttl-icon::before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url('../images/icon_smile-gr.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ttl-icon.--white {
  color: white;
}
.ttl-icon.--white::before {
  background-image: url('../images/icon_smile-wh.svg');
  margin-bottom: 0.5em;
}
.ttl-icon.--center {
  text-align: center;
  padding: 2.5em 0 0 0;
}
.ttl-icon.--center::before {
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
}
h2:has(.--top-center) {
  text-align: center;
}
.--top-center .ttl-icon {
  padding: 2.5em 0 0 0;
  margin-bottom: 1em;
}
.--top-center .ttl-icon::before {
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background-position: center top;
}
.button a {
  display: block;
  width: fit-content;
  padding: 1em 2.5em;
  border-radius: 2em;
  color: var(--color-green);
  border: 1px solid var(--color-green);
}
.button a:hover {
  background-color: var(--color-green);
  color: white;
}
.button a span {
  line-height: 1em;
  display: inline-block;
  margin: auto;
  font-weight: 700;
}
.button a span::after {
  content: "→";
  display: inline-block;
  margin-left: 1em;
}
.button.--newwindow a span::after {
  content: "";
  background-image: url('../images/icon_newwindow.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
}
.button.--down a span::after {
  content: "";
  background-image: url('../images/icon_down.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
}
.button.--white a {
  border-color: transparent;
  background-color: rgb(255, 255, 255, .2);
  color: white;
}
.button.--white a:hover {
  background-color: rgb(255, 255, 255, 0);
  border-color: white;
}
.button.--red a {
  border-color: var(--color-pink3);
  background-color: var(--color-pink3);
  color: white;
}
.button.--red a:hover {
  background-color: white;
  color: var(--color-pink3);
}
.button.--center a {
  margin: 2em auto 0 auto;
}
.page__ttl .page__ttl--jp {
  font-size: 1.5em;
  letter-spacing: .1em;
  font-weight: 700;
}
.page__ttl.--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75em;
  text-align: center;
  margin-bottom: 2.5em;
}
.page__ttl.--center .page__ttl--en {
  font-family: var(--font-en);
  font-size: .95em;
  letter-spacing: .1em;
}
table.company__tbl {
  width: 100%;
  border-top: 1px solid black;
  margin-top: 2.5em;
}
table.company__tbl th {
  text-align: left;
  white-space: nowrap;
  padding: 1em 1em 1em 0;
  border-bottom: 1px solid black;
}
table.company__tbl td {
  border-bottom: 1px solid black;
  padding: 1em 0;
}
.about__txt {
    font-weight: 700;
}
.content__ttl {
    text-align: center;
    font-size: 1.125em;
}
.policy__ttl {
  font-size: 1.125em;
  margin: 1.5em 0 1em 0;
}
.iframe__wrap iframe {
  max-width: 100%;
  height: 35rem;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width:767px) {
  .--sp-center .ttl-icon {
    text-align: center;
    padding: 2.5em 0 0 0;
  }
  .--sp-center .ttl-icon::before {
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
     background-position: center top;
  }
}
@media only screen and (min-width:768px) {
  .page__ttl .page__ttl--jp {
    font-size: 2.5em;
  }
  table.company__tbl {
    max-width: 85rem;
    margin: 5em auto 0 auto;
  }
  table.company__tbl th {
    padding: 2em 5em 2em 1em;
  }
  table.company__tbl td {
    padding: 2em 0;
  }
  .about__txt p {
    font-size: 1.125em;
    line-height: 2.2em;
    text-align: center;
  }
  .content__ttl {
    font-size: 2.25em;
  }
  .iframe__wrap iframe {
    height: 40rem;
  }
}
/*
Theme Name: Machiwaku 2026
*/
