﻿/* RESET
======================================== */
a, abbr, acronym, address, applet, article, aside, audio, 
b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed, 
fieldset, figcaption, figure, form, footer, 
header, hgroup, h1, h2, h3, h4, h5, h6, html, 
i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, output, p, pre, q, ruby, 
s, samp, section, main, small, span, strike, strong, sub, summary, sup, 
tt, table, tbody, textarea, tfoot, thead, time, tr, th, td,
u, ul, var, video { 
 font-family: inherit; 
 font-size: 100%; 
 font-weight: inherit; 
 font-style: inherit; 
 vertical-align: baseline; 
 white-space: normal;
 margin: 0; 
 padding: 0; 
 border: 0; 
 outline: 0;
 background: transparent;
 box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main { display: block; box-sizing: border-box; }
ol, ul { list-style: none;box-sizing: border-box; }
blockquote, q { quotes: none;box-sizing: border-box; }
table { 
 border-collapse: collapse; 
 border-spacing: 0; 
 box-sizing: border-box;
}
td,th{text-align: left;}

/* デフォルトデザインリセット */
input[type="submit"],
input[type="image"],
input[type="search"]
{
 border: solid 1px #E8E8E8;
 outline: none;
 -webkit-appearance: none;
}
button {
 position: relative;
 display: table;
 background-color: transparent;
 border: none;
 cursor: pointer;
 outline: none;
 padding: 0;
 appearance: none;
}


strong , b { font-weight: bold; }


sup { 
 vertical-align:top;
 font-size: small;
}
sub { 
 font-size: small;
}

/* カスタムプロパティ
======================================== */
:root {
 --color-white: #FFFFFF;
 --color-black: #333333;
 --color-gray: #f5f5f5;
 --color-red: #e6000d;
 --color-darkyellow: #403d33;
 --steel-gray:#767676;
    
}




img:not(.-reset) {
 max-width: 100%; 
 height: auto; 
 vertical-align: middle;  
 font-style: italic;  
 background-repeat: no-repeat; 
 background-size: cover;
 shape-margin: 0.75rem;
}

p.-note { 
 position: relative;
 text-align: left;
 padding-left: 1.25em;
 line-height: 1.75;
}

p.-note:before { 
 position: absolute;
 top:0;
 left: 0;
 content: "※"; 
} 

main a:not([class]) {
 color: inherit;
 text-decoration: none;   
}

main a:not([class]):hover {
 text-decoration: underline; 
}

a .-blank {
 display: inline-block;
 padding-left: 1.45em;
}
a .-blank.-white {
 background: url("../img/ic_blank_white.svg") left center no-repeat;
 background-size: auto 1em;
}
a .-blank.-black {
 background: url("../img/ic_blank_black.svg") left center no-repeat;
 background-size: auto 1em;
}

a .-blank:hover {
 opacity: .5;
}



body {
 position: relative;
 text-align:center;
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 line-height:2em;
 background-color: var(--color-white);
 -webkit-text-size-adjust: 100%;
 overflow-x: hidden;
}

@media screen and (min-width: 769px){
 a[href*="tel:"] { pointer-events: none; }
 html , body { font-size:16px; }
}
@media screen and (max-width: 768px){
 html , body { font-size:14px; }
}

body:lang(zh-CN) {
  font-family: 'Microsoft YaHei', "微软雅黑", "宋体", sans-serif;
}

/*
表
=================================== */
table.def-table thead th {
 color: #FFF;
 background-color: #000;
 font-weight: 700;
 padding: .5em;
 text-align: center;
 vertical-align: middle;
 border: solid 1px #cacaca;
}
table.def-table tbody th {
 padding: .75em 1em;
 border: solid 1px #cacaca;
 font-weight: 500;
 background-color: #FFF;
 vertical-align: middle;
}

table.def-table tbody td {
 padding: .75em 1em;
 border: solid 1px #cacaca;
 background-color: #FFF;
 line-height: 1.8;
}

@media screen and (min-width: 769px){
 table.def-table {
 width: 100%;
 }
}    

@media screen and (max-width: 768px){
.-tablearea {
  overflow-x: scroll;  
} 

.-tablearea th { width: 7em; white-space: nowrap; } 
.-tablearea td { min-width: 400px; white-space: nowrap; } 
}




/* リスト
======================================== */
ul.-circle , ul.-dot , ul.-note , ul.-asterisk , ul.-noten , ul.-notens , ol:not(.normal) {
 counter-reset: item;
 text-align: left;
 line-height: 1.6;
}

ul.-asterisk > li　{ position: relative;margin-top: .5em; padding-left:1em;}
ul.-circle> li , ul.-note　> li { position: relative;margin-top: .5em; padding-left:1.25em; }
ul.-dot> li  { position: relative;margin-top: .5em; padding-left:1em; }
ol:not([class]) > li { position: relative; margin-top: .5em; padding-left:2em; }
ul.-note.-number > li { position: relative; padding-left:2.5em; }
ul.-noten > li { position: relative;margin-top: .5em;padding-left:3.25em; }
ul.-notens > li { position: relative;margin-top: .5em; padding-left:3.25em; }
ul.-circle > li:before { position: absolute; top:0; left:0; margin-top: .5em; font-size: 6px; content: "●"; }
ul.-dot > li:before { position: absolute; top:.5em; left:0; content: "●"; font-size: 6px; transform:translateY(4px); }
ul.-note > li:before { position: absolute; top:0; left:0; content: "※"; }
ul.-note.-number > li:before { counter-increment: item; content: '※'counter(item);}
ul.-noten > li:before { position: absolute; top:0; left:0; content: "Note:"; }
ul.-notens  > li:before { position: absolute; top:0; left:0; content: "Notes:"; }
ul.-asterisk > li:before { content: "*"; transform:translateY(4px); }
ol:not([class]) > li:before { position: absolute; top:0; left:0; counter-increment: item; content: counter(item)' .'; }
ol:not([class]) > li:before { position: absolute; top:0; left:0; counter-increment: item;  content: counter(item)' )'; }



/*
マージン
=================================== */
.-mt1em { margin-top: 1em !important; }
.-mt2em { margin-top: 2em !important; }
.-mt0 { margin-top: 0 !important; }

@media screen and (min-width: 768px){
 .-mt160 { margin-top: 160px !important; } 
 .-mt120 { margin-top: 120px !important; } 
 .-mt100 { margin-top: 100px !important; } 
 .-mt80 { margin-top: 80px !important; } 
 .-mt60 { margin-top: 60px !important; } 
 .-mt40 { margin-top: 40px !important; } 
 .-mt30 { margin-top: 30px !important; } 
 .-mt20 { margin-top: 20px !important; } 
 .-mt10 { margin-top: 10px !important; } 
}
@media screen and (max-width: 767px){
 .-mt160 { margin-top: 100px !important; } 
 .-mt120 { margin-top: 90px !important; } 
 .-mt100 { margin-top: 80px !important; } 
 .-mt80 { margin-top: 60px !important; } 
 .-mt60 { margin-top: 40px !important; } 
 .-mt40 { margin-top: 30px !important; } 
 .-mt30 { margin-top: 20px !important; } 
 .-mt20 { margin-top: 15px !important; } 
 .-mt10 { margin-top: 8px !important; } 
}

.-mb1em { margin-bottom: 1em !important; }
.-mb2em { margin-bottom: 2em !important; }

@media screen and (min-width: 768px){
 .-mb160 { margin-bottom: 160px !important; } 
 .-mb120 { margin-bottom: 120px !important; } 
 .-mb100 { margin-bottom: 100px !important; } 
 .-mb80 { margin-bottom: 80px !important; } 
 .-mb60 { margin-bottom: 60px !important; } 
 .-mb40 { margin-bottom: 40px !important; } 
 .-mb30 { margin-bottom: 30px !important; } 
 .-mb20 { margin-bottom: 20px !important; } 
 .-mb10 { margin-bottom: 10px !important; } 
}
@media screen and (max-width: 767px){
 .-mb160 { margin-bottom: 100px !important; } 
 .-mb120 { margin-bottom: 90px !important; } 
 .-mb100 { margin-bottom: 80px !important; } 
 .-mb80 { margin-bottom: 60px !important; } 
 .-mb60 { margin-bottom: 40px !important; } 
 .-mb40 { margin-bottom: 30px !important; } 
 .-mb30 { margin-bottom: 20px !important; } 
 .-mb20 { margin-bottom: 15px !important; } 
 .-mb10 { margin-bottom: 8px !important; } 
}

/*
パディング
=================================== */
.-pad1 { padding: 1em; }
.-pad15 { padding: 1.5em; }
.-pad2 { padding: 2em; }


/*
ディスプレイ
=================================== */
.display-is-block { display: block; }
.display-is-iblock { display: inline-block; }
.display-is-table { display: table; }
.display-is-inline { display: inline; }

@media screen and (min-width: 768px){
.pcdisplay-is-block { display: block; }
.pcdisplay-is-iblock { display: inline-block; }
.pcdisplay-is-table { display: table; }
.pcdisplay-is-inline { display: inline; }
}
@media screen and (max-width: 767px){
.spdisplay-is-block { display: block; }
.spdisplay-is-iblock { display: inline-block; }
.spdisplay-is-table { display: table; }
.spdisplay-is-inline { display: inline; }
}

/* ボックス
======================================== */
.-boxcenter { margin-left: auto; margin-right: auto;}
.-boxleft { margin-left: 0; margin-right: auto;}
.-boxright { margin-left: auto; margin-right: 0;}

/* 段落
======================================== */
.align-is-left { text-align: left; }
.align-is-center { text-align: center; }
.align-is-right { text-align: right; }

/* フォントカラー
======================================== */
.fc-is-white { color: var(--color-white); }
.fc-is-black { color:  var(--color-black); }
.fc-is-red { color:  var(--color-red); }

/* リンクボタン
======================================== */

.comp-link {
 position: relative;
 display: table;
 border: solid 1px #cacaca;
 background-color: #FFF;
 line-height: 1;
 color: inherit;
 text-decoration: none;
 font-weight: 500;
 text-align: center;
 transition : all 0.8s ease 0s;
}

.comp-link:after {
 display: block;
 width: 12px;
 height: 12px;
 border-right: solid 2px #000000;
 border-bottom: solid 2px #000000;
 content: "";
 position: absolute;
 top:50%;
 right:1em;
 transform: rotate(-45deg) translateY(-50%);
 transition : all 0.8s ease 0s;
}

.comp-link:hover{
 color: #999;
 text-decoration: none;
}
.comp-link:hover:after {
 border-right: solid 2px #999;
 border-bottom: solid 2px #999;
}

.comp-link.is-close {
 pointer-events: none;
 color: #959595;
 background-color: #d5d5d5;
}
.comp-link.is-close:after {
 border-right: solid 2px #959595;
 border-bottom: solid 2px #959595;
}

.comp-link.is-blank:after {
  width: 15px;
  height: 15px;
  border: none;
  background: url("../img/ic_blank_black.svg") left center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.comp-link.is-blank:hover:after {
  opacity: 0.5;
}

.comp-link.is-anchor:after {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg) translateY(-25%);
}

@media screen and (min-width: 769px) {
 .comp-link { min-width: 286px; padding: 1em 2em; }
 .comp-link:after { width: 12px; height: 12px; top:50%; right:1em; }
}

@media screen and (max-width: 768px){
 .comp-link { min-width: 50%; padding: .75em 3em; }
 .comp-link:after { width: 6px; height: 6px; top:47%; right:.5em; }
}


.comp-back {
 position: relative;
 display: block;
 border: solid 1px #cacaca;
 background-color: #FFF;
 line-height: 1;
 color: inherit;
 text-decoration: none;
 font-weight: 500;
 text-align: center;
 transition : all 0.8s ease 0s;
}


.comp-back:hover {
 opacity: .5;
}

@media screen and (min-width: 769px) {
 .comp-back { margin: 80px auto 120px; padding: 1.5em 2em; width: 640px; max-width:80%; }
}

@media screen and (max-width: 768px){
 .comp-back { margin: 40px auto 60px; padding: 1em .5em; max-width:90%; }
}



/*
ヘッダー
====================================================================== */
.header__container {
 position: relative;
 z-index: 100;
}

.header__sitename {
 position: relative;
 z-index: 104;
}
.header__company { display: block; z-index: 105; font-weight: 700; text-decoration: none; color: inherit;}
.header__lang {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 110;
  border-left: 1px solid #CACACA;
}
.header__lang__select__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.header__lang__select__title::before {
  content: "";
  display: inline-block;
  background: url(../img/ic_lang.svg) no-repeat 50% 50%;
  width: 36px;
  height: 36px;
  background-size: 32px;
}
.header__lang__select__title.-open {
  background: #E6000D;
  color: #fff;
}
.header__lang__select__title.-open::before {
  background: url(../img/ic_lang_white.svg) no-repeat 50% 50%;
  background-size: 32px;
}
.header__lang__select__list1 {
  display: none;
  border-bottom: 1px solid #fff;
}
.header__lang__select__title.-open + .header__lang__select__list1 {
  display: block;
}
.header__lang__select__list1__item1 {
  background: #403D33;
  padding: 10px;
  color: #fff;
  border-top: 1px solid #fff;
  cursor: pointer;
}
.header__lang__select__title.-japan + .header__lang__select__list1 .header__lang__select__list1__item1.-japan,
.header__lang__select__title.-english + .header__lang__select__list1 .header__lang__select__list1__item1.-english,
.header__lang__select__title.-china + .header__lang__select__list1 .header__lang__select__list1__item1.-china {
  background: #E6000D;
  pointer-events: none;
}


@media screen and (min-width: 1181px) {
.header__container { padding: 0 120px 0 3%; }
.header__wrapper {
 position: relative;
 max-width: 1320px;
 margin: 0 auto;
 display: flex;
 /*justify-content: flex-start;*/
 justify-content: space-between;
 align-items: center;
}
.header__sitename img { width: auto; height: 46px; }
 .header__company {
 position: absolute;
 right: 0;
 /*top: 50%;*/
 top: 12px;
 /*transform: translateY(-50%);*/
 font-weight: 700;
}
.header__lang {
  width: 100px;
}
.header__lang__select__title {
  height: 100px;
  transition : all 0.4s ease 0s;
}
.header__lang__select__title:hover {
  opacity: .5;
}
.header__lang__select__list1__item1 {
  transition : all 0.4s ease 0s;
}
.header__lang__select__list1__item1:hover {
  opacity: .5;
}
}

@media screen and (max-width: 1180px){
.header__sitename img{ width: auto; height: 23px; }
.header__container { position: relative; padding: 8px 0 10px; }
 .header__company {
 position: relative;
 }

.header__lang {
  width: 74px;
}
.header__lang__select__title {
  height: 74px;
}
}
@media screen and (max-width: 320px){
  .header__company {
    font-size: 12px;
  }
}


/*
メニュー
====================================================================== */
.gmenu__wrapper > li a {
 color: inherit;
 text-decoration: none !important;
 transition : all 0.4s ease 0s;
}
.gmenu__wrapper > li a:hover { opacity: .5;}
.gmenu__wrapper > li a.is-current { pointer-events: none; color:#e6000d; }
.gmenu__wrapper > li a .-blank:hover { text-decoration: none; }



@media screen and (min-width: 1181px){
  .gmenu__container {
    padding-top: 52px;
  }
 .gmenu__wrapper {
 display: flex;
 justify-content: flex-start; 
 }
 .gmenu__wrapper > li {
  margin-left: 2em;
  font-size: clamp(12px,15px,1.05vw);
  display: flex;
  justify-content: center;
  align-items: center;
  /*min-height: 75px;*/
  min-height: 48px;
  line-height: 1;
 }
.gmenu__box {
 position: absolute;
 left: 50%;
 top:73px;
 display: block;
 width: 100vw;
 transform: translateX(-50%);
 background-color:rgba(000,000,000,0.8);
 color: #FFFFFF;
 padding: 60px 0 80px;
} 
 .gmenu__box dl {
 position: relative;
 max-width: 1220px;
 margin: 0 auto;
 text-align: left;
 }
 .gmenu__box dl dt {
  font-size: 30px;
  font-weight: 700;
 }    
 .gmenu__box dl dd ul {
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  margin-top: 1em;
 }    
  .gmenu__box dl dd ul > li {
  display: flex;
  justify-content: flex-start; 
  align-items: center;
 }    
  .gmenu__box dl dd ul > li {
  width: 48%;
  margin-right: 4%;
  text-align: left;
 }
 .gmenu__box dl dd ul > li:nth-child(2n) {
  margin-right: 0;
 }
    
 .gmenu__box dl dd ul > li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1em 0;
 color: #FFF;
 text-decoration: none;
  border-bottom: solid 1px #868787;
 }
    
 .gmenu__box dl dd ul > li a:after {
  display: block;
  width: 8px;
  height: 8px;
  border-right: solid 2px var(--color-red);
  border-bottom: solid 2px var(--color-red);
  content: "";
  position: absolute;
  top:1.8em;
  right:0;
  transform: rotate(-45deg);
 }    
    

 .-onsubmenu .gmenu__box { display: none; }
 .-onsubmenu:hover .gmenu__box {  display: block; }
 .-onsubmenu {
  background: url("../img/arw_under.svg") center bottom 5px no-repeat;
  background-size: 10px 6px;
 }
    
}

@media screen and (max-width: 1180px){
.gmenu__container { 
 position: fixed;
 width: 100%;
 height: 100vh;
 left: 0;
 top: 0;
 z-index: 100;
 text-align: left;
 padding-top: 70px;
 pointer-events: none;
 }
    
 .gmenu__container.-active {
  pointer-events: all;    
 }
    
.gmenu__container:after { 
 content: "";
 position: absolute;
 width: 100%;
 height: calc(100vh - 70px);
 left: 0;
 top: 70px;
 text-align: left;
 background-color:rgba(000,000,000,0.6);
 z-index: 1;
 transition : all 0.25s ease .25s;
 }
 .gmenu__container:not(.-active):after { 
  opacity: 0;
 }
.gmenu__container.-active:after { 
  opacity: 1;
 }  
    
.gmenu__container:after { 
 content: "";
 position: absolute;
 width: 100%;
 height: calc(100vh - 70px);
 left: 0;
 top: 70px;
 text-align: left;
 background-color:rgba(000,000,000,0.6);
 z-index: 1;
 }
    
 .gmenu__wrapper {
  position: relative;
  z-index: 2;
  background-color: #FFF;
  transition : all 0.4s ease .2s;
  overflow: hidden; 
 }
    
 .gmenu__container:not(.-active) .gmenu__wrapper {
  max-height: 0;
 } 
 .gmenu__container.-active .gmenu__wrapper {
  border-top: solid 1px #d1d1d1;
  max-height: 100vh;
  transition : all 0.25s ease .25s;
 } 
    
    
 .gmenu__wrapper > li {
  border-top: solid 1px #d5d5d5;
 }
 .gmenu__wrapper > li:not(.-onsubmenu) > a {
  position: relative;
  display: block;
  padding: 1em 1em;
 }   
 .gmenu__wrapper > li > a:after {
  display: block;
  width: 8px;
  height: 8px;
  border-right: solid 2px var(--color-black);
  border-bottom: solid 2px var(--color-black);
  content: "";
  position: absolute;
  top:1.5em;
  right:1em;
  transform: rotate(-45deg);
 }   
    
 .menu-trigger {
 position: absolute;
 left: 0;
 top: 4px;
 z-index: 110;
 display: block;
 width: 62px;
 height: 57px;
 background-position: center;
 background-size: auto 24px;
 background-repeat: no-repeat;
 }   
    
 .menu-trigger:not(.-active) {
 background-image: url(../img/menu_off.svg);
 }
 .menu-trigger.-active {
 background-image: url(../img/menu_on.svg);
 }
 .-onsubmenu > a {
  display: none;
 }
    
.gmenu__box dl dd ul > li {
 border-top: solid 1px #d5d5d5;   
 } 
.gmenu__box dl dt {
  position: relative;
  display: block;
  padding: 1em 1em;
  color: inherit;
  text-decoration: none;
  pointer-events: all;
 }
.gmenu__box dl dt:not(.-active):after {
 position: absolute;
 right: .4em;
 top: .4em;
 content: "+";
 font-size: 28px;
 font-weight: 400;
 }  
.gmenu__box dl dt.-active:after {
 position: absolute;
 right: .4em;
 top: .4em;
 content: "-";
 font-size: 28px;
 font-weight: 400;

 }  
.gmenu__box dl dt:not(.-active) + dd  {
  max-height: 0;
  line-height: 0;
  overflow: hidden;
 }        
.gmenu__box dl dt.-active + dd {
  max-height: 50vh;
  line-height: 4;
 }       
    
.gmenu__box dl dd ul > li a {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 0 1em 0 2em;
  color: inherit;
  text-decoration: none;
 }
}


/*
パン屑リスト
====================================================================== */
.breadcrumb-container {
 background-color: #34373a;
 color: #FFF;
 line-height: 1.4;
 padding: 1em 5%;
}

.breadcrumb-wrapper{
 max-width: 1320px;
 margin:0 auto;
 text-align: left;
}

.breadcrumb-arrow {
 display: inline-block;
 padding: 0 .5em;
}

.breadcrumb-wrapper a {
 color: #FFF;
 text-decoration: underline;
}

@media screen and (min-width: 769px){
.breadcrumb-container { font-size: 14px; }
}
@media screen and (max-width: 768px){
.breadcrumb-container { font-size: 12px; }
}


/*
メイン
====================================================================== */
main:not(.-reset) {
 min-height: calc(100vh - 220px);
}

.pagetitle-container {
 position: relative;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #000;
 background-repeat: no-repeat;
 background-size: cover;
 overflow: hidden;
}

.pagetitle-wrapper{
 width: 90%;
 max-width: 1320px;
 margin:0 auto;
 text-align: left;
}
.pagetitle-headline {
 font-weight: 700;
}
.pagetitle-headline.-white {
 color: #FFFFFF; 
}
.pagetitle-headline.-black {
 color: #000000; 
}



.pagetitle-headline.-shadow {
 text-shadow: 1px 2px 8px #000000; 
}


@media screen and (min-width: 769px){
 .pagetitle-container { height: 300px; }
 .pagetitle-headline { font-size: clamp(20px,40px,3.5vw); }
}
@media screen and (max-width: 768px){
 .pagetitle-container { height: 150px; }
 .pagetitle-headline { font-size: clamp(18px,24px,6vw); }
}



.def-container {
 width: 90%;
 max-width: 1360px;
 margin-left: auto;
 margin-right: auto;
}


.headline-border {
 text-align: center;
 border-bottom: solid 2px #000;
 font-weight: 500;
 letter-spacing: .05em;
}
.headline-bg {
 text-align: center;
 color: #FFF;
 background-color: #000;
 font-weight: 500;
 letter-spacing: .1em;
}

@media screen and (min-width: 769px){
 .headline-border { font-size: clamp(24px,32px,5vw); padding-bottom: .75em; }
 .headline-bg { font-size: clamp(22px,28px,4vw); padding: .5em; }
 .headline-bg.-gradient {
background: url("../img/gradientbg_pc.jpg") left bottom no-repeat;
background-size: cover;
 }
}
@media screen and (max-width: 768px){
 .headline-border { font-size: clamp(14px,18px,6vw); padding-bottom: .75em; }
 .headline-bg { font-size: clamp(16px,20px,6vw); padding: .75em .5em; }
 .headline-bg.-gradient { 
background: url("../img/gradientbg_sp.jpg") left bottom no-repeat;
background-size: cover;
 }
}


/*
フッター周り
====================================================================== */
.contactbanner {
 display: block;
 width: 100%;
 background-image: url("../img/contactbanner_bg.jpg");
 background-size: cover;
 text-decoration: none;
 opacity: 1;
 transition : all 0.4s ease 0s;
}

.contactbanner:hover {
 opacity: .9;
}

.contactbanner-inner {
 position: relative;
 display: block;
 width: 100%;
 max-width: 1360px;
 margin: 0 auto;
}

.contactbanner-arrow {
 position: absolute;
 right: 0;
 top:50%;
 transform: translateY(-50%);
 display: block;
 width: 84px;
 height: 84px;
 border: solid 1px #FFF;
 border-radius : 50%;
}

.contactbanner-arrow:after {
 display: block;
 width: 14px;
 height: 14px;
 border-right: solid 2px #FFF;
 border-bottom: solid 2px #FFF;
 content: "";
 position: absolute;
 top:50%;
 left:50%;
 transform: rotate(-45deg) translate(-10%,-85%);
}

.contactbanner span {
 color: #FFF;
}
.contactbanner span span {
 display: table;
}
.contactbanner-headline {
 font-weight: 700;
 line-height: 1;
}
.contactbanner-desc {
 margin-top: 1.5em;
 font-weight: 700;
 line-height: 1;
}

@media screen and (min-width: 769px){
 .contactbanner { padding: 9% 5% 7.2%; }
 .contactbanner-headline { font-size: clamp(40px,60px,4vw); }
 .contactbanner-desc { font-size: clamp(16px,20px,1.5vw); }
 .contactbanner-arrow { width: 84px; height: 84px; }
 .contactbanner-arrow:after { width: 14px; height: 14px; transform: rotate(-45deg) translate(-10%,-85%); }
}
@media screen and (max-width: 768px){
 .contactbanner { padding: 45px 5% 45px; }
 .contactbanner-headline { font-size: clamp(20px,28px,8vw); }
 .contactbanner-desc { font-size: 12px; }
 .contactbanner-arrow { width: 32px; height: 32px; }
 .contactbanner-arrow:after { width: 6px; height: 6px; transform: rotate(-45deg) translate(-10%,-85%); }
}


.pagetop__wrapper {
 position: fixed;
 z-index: 60;
 left: 50%;
 max-width: 1360px;
 transform: translateX(-50%);
 transition : all 0.4s ease 0s;
}

.-pagetop {
 position: relative;
 display: block;
 border-radius : 6px;
 margin: 0 0 0 auto;
 background-color: var(--color-black); 
 overflow: hidden;
 border: solid 1px #FFF;
}


.-pagetop:after {
 position: absolute;
 left: 50%;
 top: 50%;
 content: "";
 display: table;
 border-top: solid 2px #FFF;
 border-right: solid 2px #FFF;
 transform: translate(-50%,-20%) rotate(-45deg);
}

@media screen and (min-width: 769px){
 .pagetop__wrapper {
 padding-right: .6%;
 }
 .pagetop__wrapper:not(.is-active):not(.is-fixed) { bottom:-60px; width: 90%; opacity: 0; }
 .pagetop__wrapper.is-active { bottom:30px; width: 90%; opacity: 1;}
 .pagetop__wrapper.is-fixed { bottom:230px; width: 90%; opacity: 1; }
 .-pagetop { width: 62px; height: 42px; border-radius : 6px; }
 .-pagetop:after { width: 13px; height: 13px; }
}
@media screen and (max-width: 768px){
 .pagetop__wrapper {
 padding-right: 2.3%;
 }
 .pagetop__wrapper:not(.is-active):not(.is-fixed) { bottom:-60px; width: 90%; opacity: 0; }
 .pagetop__wrapper.is-active { bottom:30px; width: 90%; opacity: 1;}
 .pagetop__wrapper.is-fixed { bottom:160px; width: 94%; }
    
 .-pagetop { width: 31px; height: 21px; border-radius : 3px; }
 .-pagetop:after { width: 7px; height: 7px; }
}


.footer__container {
 background-color: var(--color-darkyellow);
 color: var(--color-white);
}

.footer__container a{
 color: #FFF;
 text-decoration: none;
 transition : opacity 0.4s ease 0s;
}
.footer__container a:hover {
 opacity: .5;
 text-decoration: none
}

.footer__container a:hover .-blank {
 text-decoration: none
}
.footer__box {
 width: 100%;
 max-width: 1360px;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
}

.footer__box.-menu { line-height: 1; }
.footer__box.-menu > li { margin-top: 1em; }
.footer__box.-menu > li:not(:last-child) { border-right: solid 1px #FFF; }

.footer__box.-submenu {
 padding: 20px 0 0;
 border-top: solid 2px #62615b;
}

.footer__wrapper.-cp { padding: 30px 3% 35px; }

@media screen and (min-width: 768px){
.footer__container { padding:0 3%; }
.footer__box.-menu { padding: 30px 0 45px; font-size: 15px; }
.footer__box.-menu > li:not(:first-child) {padding-left: 1.5em; }
.footer__box.-menu > li:not(:last-child) {padding-right: 1.5em; }
.footer__box.-submenu {font-size: 13px; line-height: 1; display: flex; gap: 2em; }
.footer__wrapper.-cp { padding: 30px 3% 35px; font-size: 13px; line-height: 1; }
}
@media screen and (max-width: 767px){
.footer__container { padding:0 5%; }
.footer__box.-menu { padding: 12px 0; width: 20em;font-size: 12px;  }
.footer__box.-menu > li:not(:first-child) {padding-left: 1.15em; }
.footer__box.-menu > li:not(:last-child) {padding-right: 1.15em; }
.footer__box.-submenu {font-size: 12px; line-height: 1; display: flex; gap: 2em;}
.footer__wrapper.-cp { padding: 15px 3% 20px;font-size: 11px; line-height: 1; }
}


/*
swiper
====================================================================== */
.swiper-wrapper {
 position: relative;
}

.-lock button {
 pointer-events: none;
}
.swiper-slide-off > * {
 opacity: 0;
 transition-duration: 0ms;
}

.swiper-controller {
 display: grid;
 justify-items: center;
 background-color: rgba(255, 255, 255, .9);
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translate(-50%, 0);
 z-index: inherit;
}

.lb-pagination {
 text-wrap:nowrap;
}

.swiper-pagination-bullet {
 position: relative;
}

.swiper-pagination-bullet::before {
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
 content: '';
 display: block;
 inline-size: 100%;
 block-size: 100%;
 background: var(--steel-gray);
 border-radius: 50%;
}

.mv-bullet-active::before {
 background-color: #ccc;
}


.btn-swiper-control {
 display: flex;
 justify-content: center;
 align-items: center;
 inline-size: 35px;
}


.btn-swiper-control.is-stop .icon-swiper-play { display: block; inline-size: 15px; }
.btn-swiper-control:not(.is-stop) .icon-swiper-play { display: none; }
.btn-swiper-control.is-stop .icon-swiper-pause { display: none; }
.btn-swiper-control:not(.is-stop) .icon-swiper-pause {display: block; inline-size: 15px; }

@media screen and (min-width: 769px){
.swiper-controller {
 grid-template-columns: 1fr 25px;
 column-gap: 25px;
 block-size: 35px;
 padding-inline: 25px;
 border-radius: 30px;
 transform: translate(-50%, 0);
}
.swiper-pagination-bullet {
 inline-size:13px;
 block-size: 13px;
}
 .swiper-pagination-bullet { margin:0 .5rem !important; }
}
@media screen and (max-width: 768px){
.swiper-controller {
 grid-template-columns: 1fr 25px;
 column-gap: 20px;
 block-size: 30px;
 padding-inline: 20px;
 transform: translate(-50%, 0);
}
.swiper-pagination-bullet {
 inline-size:12px;
 block-size: 12px;
}
 .swiper-pagination-bullet { margin:0 .3rem !important; }
}

/* お知らせ
======================================== */
.news-container {
 background-color: var(--color-gray);
}

.news-headline {
 font-size: 40px;
 font-weight: 700;
}

.news-wrapper > li a {
 display: block;
 height: 100%;
 background-color: #FFF;
 box-shadow: 0 5px 10px 0 rgba(000, 000, 000, 0.2);
 color: inherit;
 text-decoration: none;
}

.news-thumb {
 width: 100%;
 aspect-ratio: 360 / 200;
}

.news-thumb img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.news-data {
 width: 90%;
 margin: 1em auto;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 14px;
 font-weight: 500;
 line-height: 1;
}
.news-data .-category{
 min-width: 8em;
 padding: .75em 1em;
 border: solid 1px #d9d9d9;
 text-align: center;
}

.news-desc {
 width: 90%;
 margin: 1em auto 0;
 line-height: 1.75;
 padding-bottom: 2em;
 font-weight: 500;
 text-align: left;
}


@media screen and (min-width: 769px){
 .news-container.-top { padding: 80px 5% 60px; }
 .news-container.-list { padding: 25px 5% 150px; }
.news-headline { font-size: 40px; }    
    
.news-wrapper {
 max-width: 1200px;
 margin: 0 auto 0;
 display: flex;
 justify-content: flex-start;	
 flex-wrap: wrap;
}
.news-wrapper > li {
  width: 31.3%;
  margin-top: 35px;
  margin-right: 3%;
  text-align: left;
 }
.news-wrapper > li:nth-child(3n) {
  margin-right: 0;
 }
 .news-container .comp-link { margin-top: 40px; }   
}

@media screen and (max-width: 768px){
 .news-container.-top { padding: 25px 5% 25px; }
 .news-container.-list { padding: 25px 5% 50px; }
 .news-headline { font-size: 26px; }  
.news-wrapper > li {
 margin: 20px auto 0;
}
 .news-container .comp-link { margin-top: 20px; }
}

/* shutto-translation - OverWrite */
.stt-lang-select {
  opacity: 0 !important;
  pointer-events: none;
}
