@charset "utf-8";
:root {
  --color-main1: #00A3B4;
  --color-main2: #00508E;
  --color-sub1: #c9dcd9;
  --color-sub2: #F0F3F5;
  --color-sub3: #c8e600;
  --color-sub4: #E9F6FF;
  --color-blk1: #333333;
  --color-blk2: #737373;
	--color-blk3: #cccccc;
  --color-blk4: #E9E9E9;
  --color-wht: #FFFFFF;
  --margin-big: 120px;
  --margin-middle: 60px;
  --margin-small: 20px;
  --margin-col: 40px;
  --container-w1: 60px;
  --container-w2: 30px;
  --header-hight: 80px;
}
@media screen and (max-width: 1080px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 30px;
    --margin-col: 20px;
    --container-w1: 30px;
  }
}
@media screen and (max-width: 560px) {
  :root {
    --margin-big: 40px;
    --margin-middle: 20px;
    --container-w1: 20px;
    --container-w2: 20px;
  }
}
/*====================================================================
　Commons
====================================================================*/
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 1080px) {
  html, body {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  html, body {
    font-size: 14px;
  }
}
body{
	color: var(--color-blk1);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.8;
  background: #FFF;
  font-weight: 400;
}
img {
  display: block;
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: auto;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
p {
	margin: var(--margin-small) 0;
}
input, 
button, 
select, 
textarea {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  outline: none;
}
input, 
select, 
textarea {
  background: #FFF;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
/*
link
---------------------------------------------------------*/
a {
	transition: all .3s ease;
}
a:link {
	color: var(--color-blk1);
	text-decoration: none;
}
a:visited {
	color: var(--color-blk1);
	text-decoration: none;
}
a:hover {
  opacity: .6;
	text-decoration: underline;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
main a[href$=".pdf"]:not([class])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/lp/website_fullorder/img/common/ico_link_pdf.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main a[href$=".doc"]:not([class])::after,
main a[href$=".docx"]:not([class])::after{
	content: "";
	background: url(/lp/website_fullorder/img/common/ico_link_word.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[href$=".xls"]:not([class])::after,
main a[href$=".xlsx"]:not([class])::after{
	content: "";
	background: url(/lp/website_fullorder/img/common/ico_link_excel.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[target="__blank"]:not([class]):not(a[href$=".pdf"]):not(a[href$=".doc"]):not(a[href$=".docx"]):not(a[href$=".xls"]):not(a[href$=".xlsx"])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/lp/website_fullorder/img/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main .iconnone a[href$=".pdf"]::after,
main .iconnone a[href$=".doc"]::after,
main .iconnone a[href$=".docx"]::after,
main .iconnone a[href$=".xls"]::after,
main .iconnone a[href$=".xlsx"]::after,
main .iconnone a[target="__blank"]::after{
  display: none;
}
/*
navskip
---------------------------------------------------------*/
.navskip { display: none; }
/*====================================================================
Layout……各ページを構成するサイト全体で共通したエリアを管理
====================================================================*/
/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-main1);
	border-radius: 50%;
  color: var(--color-wht);
}
/*----------------------------------------*/
.l-container01 {
  margin: var(--margin-big) 0;
}
.l-container01:first-child {
  margin: var(--margin-middle) 0 200px;
}
@media screen and (max-width: 1080px) {
  .l-container01:first-child {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 830px) {
  .l-container01:first-child {
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 560px) {
  .l-container01:first-child {
    margin-bottom: 120px;
  }
}
.l-container01.bg01 {
  background: #f6f8f9;
  margin: 0;
  padding: var(--margin-big) 0;
}
.l-container01.bg__contact {
  background: var(--color-sub2);
  margin: 0;
  padding: var(--margin-middle) 0;
}
.l-container01.bg02 {
  background: var(--color-sub4);
  margin: 0;
  padding: var(--margin-big) 0;
}
/*----------------------------------------*/
.l-section01 {
  max-width: calc(1120px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}
.l-section01.frame01 {
  border: 1px solid var(--color-blk2);
  padding-top: var(--margin-middle);
  padding-bottom: var(--margin-middle);
  border-radius: 10px;
}
/*----------------------------------------*/
.l-footer{
  background-color: var(--color-main2);
  padding: var(--container-w1);
  color: #fff;
}
.l-footer__inner {
  text-align: center;
}
.l-footer__inner p {
  font-size: 1.2em;
}
.l-footer__underline {
  border-bottom: 1px solid #fff;
  width: 70%;
  margin: 40px auto;
  padding-bottom: 20px;
}
.l-footer__logo img {
  margin: 0 auto;
}
.l-footer__flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__flex p {
  margin: 0;
}
.l-footer__flex a {
  color: #fff !important;
  background-color: #00a3b4;
  border-radius: 20px;
  margin-left: 10px;
  padding: 8px 25px;
  font-size: 0.937rem;
  transition: .3s;
}
.l-footer__flex a:hover {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .l-footer__underline {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .l-footer__flex {
    flex-direction: column;
  }
  .l-footer__flex a {
    margin: 10px 0 0;
  }
}
/*----------------------------------------*/
.l-sub__nav__title{
  padding: 20px;
  font-size: 1.2em;
  border: 1px solid var(--color-blk2);
}
.l-sub__nav__menu{
  margin-left: 20px;
}
.l-sub__nav__menu > li{
  margin-bottom: 10px;
}
.l-sub__nav__menu > li a{
  color: var(--color-main1);
}
@media screen and (max-width: 1080px) {
  .l-sub__nav__menu{
    margin-left: 0;
    padding: 20px;
    border-top: 1px solid var(--color-sub1);
    border-bottom: 1px solid var(--color-sub1);
  }
}
/*----------------------------------------*/
.l-2column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: var(--margin-middle) auto var(--margin-big);
  padding: 0 var(--container-w1);
}
.l-2column__main{
  width: 75%;
}
.l-2column__main .l-container01:first-child{
  margin-top: 0;
  margin-bottom: 0;
}
.l-2column__sub{
  width: calc(25% - 40px);
  border-left: 1px solid var(--color-sub1);
}
@media screen and (max-width: 1080px) {
  .l-2column__main{
    width: 100%;
  }
  .l-2column__sub{
    width: 100%;
    border: none;
    margin-top: var(--margin-big);
  }
}
/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
.l-row__reverse {
  flex-direction: row-reverse;
}
.l-row__center {
  align-items: center;
}
.l-row__jcenter {
  justify-content: center;
}
.l-row__jspaceb {
  justify-content: space-between;
}
.l-row__childflex1 {
  flex: 1;
}
.l-row .col0{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col0 > li {
  margin-right: var(--margin-col);
  margin-left: var(--margin-col);
  margin-bottom: var(--margin-col);
}
@media screen and (max-width: 960px) {
  .l-row .col0 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2 > li {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col2 > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col2 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col2__2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2__2 > li {
  margin-bottom: var(--margin-col);
}
.l-row .col2__2 > li.text > p {
  margin: initial;
}
.l-row .col2__2 > li.text {
  width: calc(( (100% / 3) * 2 ) - (var(--margin-col) / 2));
}
.l-row .col2__2 > li.img {
  width: calc(( (100% / 3) * 1 ) - (var(--margin-col) / 2));
}
@media screen and (max-width: 560px) {
  .l-row .col2__2 > li.text {
    width: 100%;
  }
  .l-row .col2__2 > li.img {
    width: 100%;
  }
}
.l-row .col3{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col3 > li {
  width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col3 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col3 > li:nth-child(odd) {
    margin-right: var(--margin-col);
  }
  .l-row .col3 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col3 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col4{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col4 > li {
  width: calc(100% / 4 - ((var(--margin-col) * 3 ) / 4));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col4 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col4 > li:nth-child(4n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 660px) {
  .l-row .col4 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 420px) {
  .l-row .col4 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col5 > li {
  width: calc(100% / 5 - ((var(--margin-col) * 4 ) / 5));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col5 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col5 > li:nth-child(5n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col5 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .l-row .col5 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col6 > li {
  width: calc(100% / 6 - ((var(--margin-col) * 5 ) / 6));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col6 > li:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col6 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col6 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col6 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/
/*----------------------------------------*/
header{
	display: flex;
	justify-content: space-between;
	width: 100%;
  padding: 0 20px;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: linear-gradient(to bottom,
  rgba(255,255,255,0.8) 0%,
  rgba(255,255,255,0.7) 40%,
  rgba(255,255,255,0.3) 80%,
  rgba(255,255,255,0.0) 100%
  ) !important;
  transition: .5s;
}
/*上スクロール表示、下スクロール非表示用*/
header.scroll{
  transform: translateY(-100%);
}
@media screen and (max-width: 1080px) {
  header {
    background: #fff!important;
  }
}
/*----------------------------------------*/
.l-logo{
  display: flex;
  align-items: center;
}
.l-logo__img{
  display: flex;
  align-items: center;
}
.l-logo__img img {
  width: 200px;
}
@media screen and (max-width: 1080px) {
  .l-logo{
    padding-right: 60px;
  }
  .l-logo__img img {
    width: 400px;
    height: 120px;
    transform: scale(0.5);
    transform-origin: left center;
  }
}
/*----------------------------------------*/
.l-gnav__bg{
  display: flex;
  align-items: center;
}
.l-gnav{
	display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    max-width: 560px;
    height: calc(100vh - var(--header-hight));
    max-height: 100vh;
    background-color: var(--color-sub2);
    top: var(--header-hight);
    right: 0;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-wht);
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    height: auto;
    max-height: 80vh;
    background-color: var(--color-sub2);
    top: var(--header-hight);
    right: initial;
    left: 0;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-wht);
    font-size: 16px;
  }
}
/*----------------------------------------*/
.l-gnav__main{
	display: flex;
}
.l-gnav__item{
	margin: 0 15px;
  font-weight: 600;
}
.l-gnav__item a:hover{
  text-decoration: none;
}
.l-gnav__main .l-gnav__item a{
  display: block;
  padding-bottom: .4em;
}
.l-gnav__main .l-gnav__item > a{
  position: relative;
  display: block;
}
@media screen and (max-width: 1080px) {
  .l-gnav__main{
    display: block;
  }
  .l-gnav__item {
    display: block;
    margin: 15px 0;
    border-bottom: 1px solid var(--color-sub1);
    padding-bottom: 10px;
  }
  .l-gnav__main .l-gnav__item > a{
    height: auto;
  }
  .l-gnav__main .l-gnav__item > a:hover::after{
    display: none;
  }
}
/*----------------------------------------*/
.l-gnav__sub{
	display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.l-gnav__sub > li{
	font-size: 0.8em;
}
.l-gnav__sub > .l-gnav__item{
  display: flex;
  align-items: center;
}
.l-gnav__sub li a {
  display: block;
  position: relative;
  padding: 5px 1em 5px 1em;
  text-align: center;
  color: var(--color-main2);
  font-size: 1.062rem;
  border-radius: 25px;
}
.l-gnav__sub li a.contact {
  background-color: var(--color-sub3);
  padding-left: 3em;
}
.l-gnav__sub li a.contact:before {
  position: absolute;
  content: "";
  width: 1.8em;
  height: 1.8em;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  background: url(/img/common/ico_contact_02.svg) center center / cover no-repeat;
}
@media screen and (max-width: 1080px) {
  .l-gnav__sub{
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0 0;
  }
  .l-gnav__sub > li{
    font-size: 0.9em;
  }
  .l-gnav__sub > .l-gnav__item{
    width: 100%;
    border: none;
  }
  .l-gnav__sub > .l-gnav__item:nth-child(2n){
    margin-left: 20px;
    padding-left: 1em;
  }
  .l-gnav__sub > .l-gnav__item a{
    display: block;
    width: 100%;
  }
  .l-gnav__sub > .l-gnav__item:has( > .p-sns__link){
    border: none;
    margin-right: 0;
    width: 100%;
  }
  .l-gnav__sub > .l-gnav__item:has( > .p-search__area){
    border: none;
    margin-right: 0;
    width: 100%;
  }
}
/*----------------------------------------*/
.l-dropmenu01{
  cursor: pointer;
  padding-right: 1.2em;
  position: relative;
  display: block;
}
.l-dropmenu01::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: .4em;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-main1);
  border-right: 1px solid var(--color-main1);
  transform: rotate(135deg);
}
.l-dropmenu01::after{
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-main1);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all .3s;
}
.l-dropmenu01:hover::after{
  width: 100%;
}
.l-dropmenu01.is-active::after{
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-main1);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all .3s;
}
.l-dropmenu01__bg{
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--color-wht);
}
.l-dropmenu01__close__area{
  position: absolute;
  top: 10px;
  right: 10px;
}
.l-dropmenu01__close{
  cursor: pointer;
  position: relative;
  font-size: 40px;
  line-height: 1;
  display: inline-block;
  font-weight: 400;
  color: var(--color-main1);
}
.l-dropmenu01__close:hover{
  text-decoration: none;
  opacity: .6;
}
@media screen and (max-width: 1080px) {
  .l-dropmenu01__bg{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background: var(--color-sub2);
  }
  .l-dropmenu01:hover::after{
    display: none;
  }
  .l-dropmenu01::before{
    content: "＋";
    position: absolute;
    right: 0;
    top: 0;
    bottom: .4em;
    margin: auto;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    width: 20px;
    height: 20px;
    border-top: none;
    border-right: none;
    transition: all .6s;
    transform: rotate(0deg);
    color: var(--color-main1);
  }
  .l-dropmenu01.is-active::before{
    content: "－";
    transform: rotate(180deg);
  }
}
.l-dropmenu__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.l-dropmenu__list > li{
  margin: 0 20px;
}
@media screen and (max-width: 1080px) {
  .l-dropmenu__list > li{
    width: 100%;
    margin: 5px 0;
  }
}
/*----------------------------------------*/
#navbtn {
  display: none;
}
@media screen and (max-width: 1080px) {
  #navbtn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    width: var(--header-hight);
    height: var(--header-hight);
    cursor: pointer;
    display: inline-block;
    z-index: 999;
    transition: .3s;
    padding: 0 20px;
  }
  #navbtn:before, #navbtn:after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--color-main1);
    transform: translateY(6px);
    transition: 0.3s ease-in-out;
  }
  #navbtn:before {
    transform: translateY(-8px);
    box-shadow: 0 8px var(--color-main1);
  }
  #navbtn > span {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -1.5em;
    margin: auto;
    font-size: 0.8em;
    line-height: 1;
    text-align: center;
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .menuopen {
    overflow: hidden;
  }
  .menuopen body {
    overflow: hidden;
  }
  .menuopen #navbtn:before {
    transform: rotate(-45deg);
    box-shadow: none;
  }
  .menuopen #navbtn:after {
    transform: translateY(-2px) rotate(45deg);
    box-shadow: none;
  }
}
#menu__overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
/*----------------------------------------*/
.l-gnav__current.current{
  font-weight: 700;
  color: var(--color-main1) !important;
}
/*----------------------------------------*/
.p-mainimage{
	width: 100%;
	height: 100%;
  overflow: hidden;
}
.p-mainimage__bg{
  position: relative;
  background: url(/lp/website_fullorder/img/pic_mainimage01.jpg) center center / cover no-repeat;
  min-height: 810px;
}
@media screen and (max-width: 1080px) {
  .p-mainimage__bg {
    background: url(/lp/website_fullorder/img/pic_mainimage01_sp.jpg) center center / cover no-repeat;
  }
}
.p-mainimage__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 10%;
  left: 0;
	width: 50%;
  margin-top: 100px;
}
.p-mainimage__text__item01,
.p-mainimage__text__item02 {
  width: 75%;
  margin: 0 auto;
}
.p-mainimage__text span.subtitle {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--color-main2);
  padding: 5px;
  border-radius: 5px;
  color: var(--color-main2);
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
}
.p-mainimage__text__item01 p {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.6;
}
.p-mainimage__text__item01 p span {
  font-size: 1.3em;
}
.p-mainimage__text__item02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-mainimage__text__item02 > div {
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-main1);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto 16px auto; /* 中央寄せ・下余白 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.p-mainimage__text__item02 > div > div {
  width: 100%;
  height: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.p-mainimage__text__item02 > div > div:first-child {
  background: var(--color-main1);
  color: #fff;
}
.p-mainimage__text__item02 > div > div:last-child {
  background: #fff;
  color: #333;
}
.p-mainimage__text__item02 > div div p {
  display: flex;
  position: absolute;
  height: 100%;
  margin: 0;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  line-height: 1.4;
  font-size: 1.3em;
  font-weight: 700;
}
.p-mainimage__text__item02 > div div:first-child p {
  font-size: 1.1em;
}
.p-mainimage__text__item02 > div div:last-child p {
  display: block;
  top: -5px;
}
.p-mainimage__text__item02 > div div p .number {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--color-main1);
}
@media screen and (max-width: 1582px) {
  .p-mainimage__text__item01 {
    width: 85%;
  }
  .p-mainimage__text span.subtitle {
    font-size: 1.1em;
  }
  .p-mainimage__text__item01 p {
    font-size: 1.4em;
  }
  .p-mainimage__text__item02 {
    gap: 10px;
  }
  .p-mainimage__text__item02 > div {
    width: 160px;
    height: 160px;
  }
  .p-mainimage__text__item02 > div div p {
    font-size: 1.2em;
  }
  .p-mainimage__text__item02 > div div:first-child p {
    font-size: 1em;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1080px) {
  .p-mainimage__text {
    width: 80%;
    top: 2%;
  }
}
@media screen and (max-width: 740px) {
  .p-mainimage__text {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .p-mainimage__text {
    width: 100%;
    align-items: center;
    top: auto;
    left: auto;
  }
  .p-mainimage__text__item01 {
    margin: 20px 20px 0;
  }
  .p-mainimage__text span.subtitle {
    width: auto;
  }
  .p-mainimage__text__item01 p {
    font-size: 1.4em;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .p-mainimage__text__item02 {
    position: static;
    width: 100%;
    gap: 5px;
    padding: 0 20px;
    margin-top: 38px;
  }
  .p-mainimage__text__item02 > div {
    width: auto;
    height: 110px;
    flex: 1;
    border-radius: 5px;
    margin: 0;
  }
  .p-mainimage__text__item02 > div > div {
    border-radius: 5px 5px 0 0;
  }
  .p-mainimage__text__item02 > div > div:first-child {
    border-radius: 5px 5px 0 0;
  }
  .p-mainimage__text__item02 > div > div:last-child {
    border-radius: 0 0 5px 5px;
  }
  .p-mainimage__text__item02 > div div:first-child p {
    font-size: 12px;
    top: 0;
  }
  .p-mainimage__text__item02 > div div:last-child p {
    font-size: 1em;
    top: 0;
  }
}
/*----------------------------------------*/
.p-contact01 {
  position: relative;
  margin: 0!important;
  padding-bottom: 100px;
  overflow-x: hidden;
}
.p-contact01 .p-contact__box {
  position: relative;
  padding: 40px;
  background-color: #fff;
  top: 80px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.p-contact01::after {
  content: "";
  position: absolute;
  width: 1920px;
  max-width: 100vw;
  height: 380px;
  background: url("/lp/website_fullorder/img/common/pic_bg01.png") center center / cover no-repeat;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.p-contact__box > div {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
.p-contact__box > .c-title01 {
  padding: 0;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .p-contact__box > div {
    width: 40%;
  }
}
@media screen and (max-width: 830px) {
  .p-contact__box {
    padding: 20px;
  }
  .p-contact__box > .c-title01 {
    font-size: 1.5em;
  }
  .p-contact__box > div {
    width: 70%;
  }
  .p-contact__box .c-btn01 {
    font-size: 1.2em;
    padding: 5px 0 5px 1em;
  }
}
@media screen and (max-width: 420px) {
  .p-contact__box > div {
    width: 100%;
  }
}

.p-contact02 {
  position: relative;
  margin: 0!important;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.p-contact02::after {
  content: "";
  position: absolute;
  width: 1920px;
  max-width: 100vw;
  height: 420px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("/lp/website_fullorder/img/common/pic_bg02.jpg") center center / cover no-repeat;
  z-index: 1;
}
.p-contact02 .p-contact__box {
  position: relative;
  background-color: #fff;
  padding: 40px;
  z-index: 2;
}
/*----------------------------------------*/
.p-finish {
  padding: 180px 60px 160px!important;
}
.p-finish .l-section01 {
  background: #fff;
  padding: 40px;
}
.p-finish__massage {
  text-align: center;
}
.p-finish__massage p:first-child {
  font-weight: 700;
  margin-top: 0;
}
.p-finish__massage > div {
  width: 70%;
  background-color: var(--color-sub2);
  margin: 0 auto;
  padding: 20px;
  font-weight: 700;
}
.p-finish__massage > div > p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-finish {
    padding: 180px 20px 100px!important;
  }
  .p-finish .l-section01 {
    padding: 20px;
  }
  .p-finish__massage > div {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {

}
/*----------------------------------------*/
.p-reasons .p-reasons__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-reasons .p-reasons__flex > li {
  width: calc(50% - 10px);
}
.p-reasons .p-reasons__flex > li img {
  margin: 0 auto;
}
.p-reasons .c-title03 {
  margin-top: 0;
}
@media screen and (max-width: 650px) {
  .p-reasons .p-reasons__flex {
    gap: 0;
  }
  .p-reasons .p-reasons__flex > li {
    width: 100%;
  }
  .p-reasons .p-reasons__flex > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .p-reasons .c-title02 {
    font-size: 1.5em;
  }
  .p-reasons .c-title03 {
    font-size: 1.3em;
  }
}
.p-reasons .p-reasons__box {
  text-align: center;
  border: 2px solid var(--color-main2);
  margin-top: 40px;
}
.p-reasons .p-reasons__box p {
  display: inline-block;
  background-color: #fff;
  font-size: 1.5em;
  color: var(--color-main2);
  transform: translateY(-50%);
  margin: 0;
}
.p-reasons .p-reasons__box > ul {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  justify-content: center;
  padding: 0 20px 20px;
}
.p-reasons .p-reasons__box > ul > li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 650px) {
  .p-reasons .p-reasons__box {
    margin-top: 20px;
  }
  .p-reasons .p-reasons__box p {
    font-size: 1.3em;
  }
}
/*----------------------------------------*/
.p-industrys .p-industrys__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.p-industrys .p-industrys__box {
  width: calc(50% - 10px);
  padding: 20px;
  background-color: #fff;
}
.p-industrys .c-title04 {
  margin: 0;
}
.p-industrys__best {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.p-industrys__best .p-industrys__best__item01 {
  width: 100%;
  display: flex;
  align-items: center;
}
.p-industrys__best .p-industrys__best__item02{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.p-industrys__best div.rank {
  display: inline-block;
  line-height: 1;
}
 .p-industrys__best__item01 div.rank {
  font-size: 1.2em;
 }
.p-industrys__best div.detail {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin-left: 10px;
}
.p-industrys__best div.detail .field,
.p-industrys__best div.detail .number {
  line-height: 1;
}
.p-industrys__best div.detail .field {
  color: var(--color-main2);
}
.p-industrys__best__item01 .field {
  font-size: 1.2em;
}
.p-industrys__best__item01 .number {
  font-size: 3em;
}
.p-industrys__best__item02 .number {
  font-size: 2em;
}
.p-industrys__best .p-industrys__best__item02 > div {
  display: flex;
  align-items: center;
  width: calc(50% - 5px);
}
.p-industrys__best span.rank01,
.p-industrys__best span.rank02,
.p-industrys__best span.rank03 {
  display: inline-block;
  position: relative;
  padding: 20px;
  background: var(--color-main1);
  color: #fff;
  font-weight: 700;
  font-size: 1.7em;
  line-height: 1.4;
  vertical-align: middle;
  overflow: hidden;
}
.p-industrys__best span.rank02,
.p-industrys__best span.rank03 {
  padding: 15px;
  font-size: 1.5em;
}
.p-industrys__best span.rank01::before,
.p-industrys__best span.rank02::before,
.p-industrys__best span.rank03::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.p-industrys__best span.rank02::before,
.p-industrys__best span.rank03::before {
  width: 50px;
  height: 50px;
  left: 9px;
}
.p-industrys__best span.rank01::before {
  background: url(/lp/website_fullorder/img/common/ico_best01.png) center center / contain no-repeat;
}
.p-industrys__best span.rank02::before {
  background: url(/lp/website_fullorder/img/common/ico_best02.png) center center / contain no-repeat;
}
.p-industrys__best span.rank03::before {
  background: url(/lp/website_fullorder/img/common/ico_best03.png) center center / contain no-repeat;
}

.p-industrys__box ul {
  margin-top: 20px;
}
.p-industrys__box ul li{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.2em;
  padding-left: 4em;
  width: 100%;
  height: 3em;
  overflow: hidden;
}
.p-industrys__box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.p-industrys__box ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-main1);
}
.p-industrys__box ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 2;
}
.p-industrys__box ul li:first-child:after {
  background: url(/lp/website_fullorder/img/common/ico_request01.png) center center / contain no-repeat;
}
.p-industrys__box ul li:nth-child(2):after {
  background: url(/lp/website_fullorder/img/common/ico_request02.png) center center / contain no-repeat;
}
.p-industrys__box ul li:nth-child(3):after {
  background: url(/lp/website_fullorder/img/common/ico_request03.png) center center / contain no-repeat;
}
.p-industrys__box ul li:nth-child(4):after {
  background: url(/lp/website_fullorder/img/common/ico_request04.png) center center / contain no-repeat;
}
@media screen and (max-width: 940px) {
  .p-industrys .p-industrys__box {
    width: 100%;
  } 
  .p-industrys__best .p-industrys__best__item02 {
    width: 100%;
  }
  .p-industrys__box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .p-industrys__box ul li {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 560px) {
  .p-industrys__box ul li {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-industrys__best .p-industrys__best__item02 > div {
    width: 100%;
  }
}
/*----------------------------------------*/
.p-service .p-service__flow__flex{
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 20px;
}
.p-service__flow__item {
  position: relative;
  width: calc(100% / 6 - 30px);
  border: 1px solid var(--color-main2);
  padding: 8px;
}
.p-service__flow__flex > .p-service__flow__item span {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-main2);
  color: #fff;
  font-weight: 700;
  font-size: .9em;
  line-height: 1.2;
  text-align: center;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.p-service__flow__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: var(--color-main2);
  pointer-events: none;
}
.p-service__flow__item p:nth-of-type(1) {
  text-align: center;
  color: var(--color-main2);
  font-weight: 700;
}
.p-service__flow__flex > div:last-child {
  display: flex;
  width: 60px;
  background-color: var(--color-main2);
  font-size: 1.2em;
  writing-mode: vertical-rl;
  padding: 10px;
  margin: 0;
  justify-content: center;
}
.p-service__flow__flex > div:last-child p {
  color: #fff;
}
@media screen and (max-width: 885px) {
  .p-service__flow__item {
    width: calc(100% / 3 - 40px);
  }
  .p-service__flow__flex > .p-service__flow__item:nth-child(4),
  .p-service__flow__flex > .p-service__flow__item:nth-child(5),
  .p-service__flow__flex > .p-service__flow__item:nth-child(6),
  .p-service__flow__flex > div:last-child {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .p-service__flow__item,
  .p-service__flow__flex > div:last-child {
    width: 100%;
  }
  .p-service__flow__flex > .p-service__flow__item:not(:first-child) {
    margin-top: 48px;
  }
  .p-service__flow__item:not(:last-child)::after {
    content: "↓";
    top: auto;
    left: 47%;
    bottom: -38px;
  }
  .p-service__flow__flex p {
    text-align: center;
  }
  .p-service__flow__item p:nth-of-type(1) {
    margin-bottom: 0;
  }
  .p-service__flow__item p:nth-of-type(2) {
    margin: 10px 0;
  }
  .p-service__flow__flex > div:last-child {
    writing-mode: horizontal-tb;
    margin-top: 20px!important;
  }
  .p-service__flow__flex > div:last-child p {
    margin: 0;
  }
}

.p-service__service__flex {
  display: flex;
  justify-content: center;
  background-color: var(--color-sub4);
  padding: 20px;
  gap: 20px;
}
.p-service__service__flex > div {
  width: calc(100% / 3 - 10px);
  background-color: #fff;
}
.p-service__service__flex > div > p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  text-align: center;
  padding: 20px;
  background-color: var(--color-main2);
  color: #fff;
  min-height: 125px;
  line-height: 1.5;
  font-size: 1.2em;
  font-weight: 700;
} 
.p-service__service__flex > div > p span {
  font-size: 1rem;
  font-weight: normal;
}
.p-service__service__flex > div > ul {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-service__service__flex {
    flex-wrap: wrap;
  }
  .p-service__service__flex > div {
    width: 100%;
  }
  .p-service__service__flex > div > p {
    min-height: 100px;
  }
}
/*----------------------------------------*/
.p-flow__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.p-flow__box .p-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 4 - 20px);
}
.p-flow__box .p-flow__item > span {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-main2);
  color: #fff;
  font-weight: 700;
  font-size: .9em;
  line-height: 1.2;
  text-align: center;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.p-flow__box .p-flow__item > p {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--color-main2);
  margin: 10px 0;
}
@media screen and (max-width: 600px) {
  .p-flow__box .p-flow__item {
    width: 100%;
  }
  .p-flow__box .p-flow__item:not(:first-child) {
    margin-top: 60px;
  }
  .p-flow__box .p-flow__item img {
    width: 80%;
    margin: 0 auto;
  }
}
/*----------------------------------------*/
.p-casestudy {
  position: relative;
  padding-bottom: 200px!important;
  overflow-x: hidden;
}
.p-casestudy::after {
  position: absolute;
  content: "";
  width: 1920px;
  max-width: 100vw;
  height: 930px;
  bottom: 0;
  background: url("/lp/website_fullorder/img/common/pic_bg03.png") center center / 100% auto no-repeat;
  z-index: 0;
}
.p-casestudy__box {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
}
.p-casestudy__box  .c-title04 {
  margin: 0;
}
.p-casestudy__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-casestudy__flex > div:first-child {
  width: 45%;
}
.p-casestudy__flex > div:last-child {
  width: 55%;
}
.p-casestudy__flex > div > div p {
  background-color: var(--color-sub4);
  padding: 12px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-casestudy__box {
    padding: 20px;
  }
  .p-casestudy__flex > div {
    width: 100%!important;
  }
  .p-casestudy__flex > div:first-child {
    margin-top: 20px;
  }
  .p-casestudy__flex > div img {
    margin: 0 auto;
  }
}
/*----------------------------------------*/
.p-casemodal {
  margin: 0;
}
.p-casemodal .l-section01 {
  position: relative;
  max-height: 400px;
  max-width: 1920px;
  margin: 0;
  padding: 0;
  background-color: var(--color-main2);
}
.p-casemodal .l-section01 > .splide {
  top: -200px;
}
.p-casemodal__list {
  display: flex;
}
.p-casemodal__list__item {
  display: block;
  background-color: #fff;
  padding: 20px;
  margin-right: 20px;
}
.p-casemodal__list__item:hover {
  text-decoration: none;
  opacity: 1;
}
.p-casemodal__list__item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-casemodal__list__item > div > p {
  text-align: center;
  min-height: 110px;
}
@media screen and (max-width: 580px) {
  .p-casemodal__list__item > div > p {
    min-height: 80px;
  }
}
/*----------------------------------------*/
.casemodal-modal__body {
  max-height: 70vh;  
  overflow-y: auto;      
  padding-top: 8px; 
}
.casemodal-modal__body .p-casestudy__box {
  background: none;
}
.casemodal-modal__body .p-casestudy__flex > div img {
  margin: 0 auto;
}
/*----------------------------------------*/
.p-casemodal__list__item {
  outline: none;
}
.p-casemodal__slider-controls {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  bottom: 60px;
  left: 0;
  right: 0;
}
.p-casemodal__slider-controls button {
  padding: 8px 20px;
  font-size: 1.1em;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.p-casemodal__slider-controls button:hover {
  background: #eee;
}
.casemodal-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casemodal-modal__bg {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
}
.casemodal-modal__content {
  position: relative;
  background: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  z-index: 1;
  min-width: 300px;
  max-width: 90vw;
}
.casemodal-modal__close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -15px;
  top: -15px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--color-main2);
  border-radius: 50px;
  border: none;
  font-size: 2em;
  cursor: pointer;
}
/*----------------------------------------*/
/* アニメーション */
.p-mainimage__text__item01,
.p-mainimage__text__item02 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.33,1,.68,1);
}
.p-mainimage__text__item01.is-show,
.p-mainimage__text__item02.is-show {
  opacity: 1;
  transform: translateX(0);
}

.p-casemodal__list__item img {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.p-casemodal__list__item:hover img {
  transform: scale(1.08);
}

.scroll-fadein-up {
  opacity: 0;
  transform: translateY(40px); 
  transition:
    opacity 0.8s cubic-bezier(.33,1,.68,1),
    transform 0.8s cubic-bezier(.33,1,.68,1);
  will-change: opacity, transform;
}
.scroll-fadein-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fadein-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s cubic-bezier(.33,1,.68,1), transform 0.9s cubic-bezier(.33,1,.68,1);
  will-change: opacity, transform;
}
.scroll-fadein-left.is-show {
  opacity: 1;
  transform: translateX(0);
}

.p-contact__box.fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.33,1,.68,1), transform 0.8s cubic-bezier(.33,1,.68,1);
  will-change: opacity, transform;
}
.p-contact__box.fadein-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
/*----------------------------------------*/
.splide__arrow {
  top: auto;
  bottom: -110px;
  color: #fff;
  background: none;
  font-size: 1.8em;
  font-weight: 700;
}
.splide__arrow--prev {
  left: 46%;
}
.splide__arrow--next {
  right: 46%;
}
.splide__arrow {
  opacity: 1 !important;
}
.splide__arrow:hover {
  opacity: 1 !important;
}
.splide__arrow svg {
  opacity: 1!important;
  fill: #fff;
}
.splide__pagination {
  display: none;
}
.splide__autoplay svg {
  fill: #fff;
}
.splide__autoplay .splide__toggle {
  position: absolute;
  width: 40px;
  bottom: -80px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1600px) {
  .splide__arrow--prev {
    left: 43%;
  }
  .splide__arrow--next {
    right: 43%;
  }
}
@media screen and (max-width: 850px) {
  .splide__arrow--prev {
    left: 40%;
  }
  .splide__arrow--next {
    right: 40%;
  }
}
@media screen and (max-width: 630px) {
  .splide__arrow--prev {
    left: 32%;
  }
  .splide__arrow--next {
    right: 32%;
  }
  .splide__autoplay .splide__toggle {
    bottom: -83px;
  }
}
/*----------------------------------------*/
.p-pager ul {
  display: flex;
  justify-content: center;
  margin: var(--margin-big) 0 0;
  flex-wrap: wrap;
}
.p-pager li {
  margin: 0 5px 10px;
}
.p-pager li a {
  text-decoration: none;
  color: var(--color-main1);
  background: var(--color-sub2);
  padding: 0.5em 1em;
  display: inline-block;
}
.p-pager li a:hover {
  opacity: 0.6;
}
.p-pager li.active a {
  font-weight: bold;
  background: var(--color-main1);
  color: #FFF;
}
/*----------------------------------------*/
.p-map iframe{
  width: 100%;
  height: 50vh;
  border: none;
}
/*----------------------------------------*/
.p-sns__link{
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.p-sns__link > a{
  display: block;
  width: calc(1rem);
  height: calc(1rem);
  margin-right: 1rem;
}
.p-sns__link > a:last-child{
  margin-right: 0;
}
.p-sns__link > a > img{
  width: calc(1rem);
}
@media screen and (max-width: 1080px) {
  .p-sns__link > a{
    width: 40px;
    height: 40px;
  }
  .p-sns__link > a > img{
    width: 40px;
  }
}
/*----------------------------------------*/
.p-search__area{
  display: inline-block;
}
.p-search__area form{
  display: flex;
  align-items: center;
  position: relative;
}
.p-search__area input.input__text{
  -webkit-appearance:none;
  width: 130px;
  height: calc(1em * 1.8);
  padding: 0 20px 0 1em;
  border: none;
  border-radius: 50px;
  background:var(--color-sub2) !important;
  background-size: 25px 25px;
  transition: all 0.5s;
  outline: none;
}
.p-search__area input.input__text::placeholder{
  color: var(--color-blk2);
  font-weight: 700;
  line-height: 1;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
.p-search__area input.input__text:focus{
  width: 200px;
}
.p-search__area input.icon__search{
  width: calc(1em * 1.8 - 6px);
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;
  background: none;
}
.p-search__area input.icon__search:hover{
  opacity: .5;
}
@media screen and (max-width: 1080px) {
  .p-search__area{
    display: block;
    width: 100%;
  }
  .p-search__area input.input__text{
    width: 100%;
    height: calc(1.6em* 1.8);
  }
  .p-search__area input.input__text:focus{
    width: 100%;
  }
  .p-search__area input.icon__search{
    right: 20px;
  }
}
/*----------------------------------------*/
/* form-nav */
.p-formstep {
  display: flex;
  flex-wrap: wrap;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 13px 0;
    line-height: 1.5;
    background: var(--color-sub1);
    color: #999999;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
}
.p-formstep > li:not(:last-child)::before,
.p-formstep > li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid var(--color-sub1);
    margin: auto;
}
.p-formstep > li:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}
@media screen and (max-width: 560px) {
  .p-formstep {
    display: block;
  }
  .p-formstep > li:not(:last-child)::before,
  .p-formstep > li:not(:last-child)::after {
    display: none;
  }
  .p-formstep > li {
    border-bottom: 1px solid #FFFFFF;
}
}
/* active */
.p-formstep > li.fs__active {
    z-index: 1;
    background: var(--color-main1);
    color: #FFF;
}
.p-formstep > li.fs__active:not(:last-child)::after {
    border-left-color: var(--color-main1);
}
.p-formstep > li.fs__active:not(:last-child)::before {
    border-left: none;
}
/*----------------------------------------*/
.p-form__bg{
  border: 1px solid var(--color-sub1);
  border-radius: 20px;
  padding: var(--container-w1) 150px;
}
.p-form{
    margin: auto;
}
.p-input{
  width: 100%;
  display: block;
  margin-bottom: 60px ;
}
.p-input > .title__area{
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
}
.p-input > .input__area{
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-input > .input__area > .nowrap{
  flex: 1;
  display: flex;
  align-items: center;
}
.p-input > .input__area .attached{
  margin-right: 10px;
  margin-left: 10px;
}
.p-input > .input__area .attached__f{
  margin-right: 10px;
}
.input__flex1{
  flex: 1;
}
.input__error{
  width: 100%;
  color:#DE1963;
}
.input__width01{
  width: 5em;
}
.input__width02{
  width: 8em;
}
.input__width03{
  width: 10em;
}
@media screen and (max-width: 680px) {
  .p-input{
    display: block;
    margin-bottom: 40px;
  }
  .p-input > .title__area{
    margin-bottom: .8em;
  }
  .input__width01{
    width: 100%;
  }
  .input__width02{
    width: 200%;
  }
  .input__width03{
    width: 100%;
  }
}
/*必須・任意*/
.p-required{
  background: var(--color-main1);
  color: var(--color-wht);
  border-radius: 3px;
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}
.p-required.any{
  background: var(--color-blk3);
  color: var(--color-blk1);
}
/*ツールチップ　ヒント*/
.p-tooltip .tip__ico{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
}
.p-tooltip .tip__ico:hover{
  opacity: .6;
}
.p-tooltip .tip__ico::before{
  content: "？";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-main1);
  border-radius: calc(1em * 1.8);
  color: var(--color-wht);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.p-tooltip .tip__text{
  width: max-content;
  max-width: 100%;
  background: var(--color-blk4);
  font-size: 0.8em;
  padding: .5em .8em;
  position: absolute;
  bottom: calc(1.7em * 1.8);
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0 , 0) ;
  transition: all .3s;
  z-index: 10;
}
.p-tooltip .tip__text::after{
  content: "";
  position: absolute;
  bottom: -10px;
  right: calc((1em * 1.8) / 3);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--color-blk4);
  border-bottom: 0;
}
.p-tooltip .tip__text > p{
  margin: .5em 0;
}
.p-tooltip .tip__ico:hover + .tip__text{
  display: block;
  transform: scale(1 , 1);
  opacity: 1;
}
/*セレクトボックス*/
.p-input select{
  border-radius: 3px;
  border: 1px solid var(--color-blk2);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}
.p-input select:focus{
  border: 1px solid var(--color-main1);
}
/*テキストエリア*/
.p-input textarea{
  border-radius: 3px;
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
  height: 8em;
}
.p-input textarea:focus{
  border: 1px solid var(--color-main1);
}
/*その他*/
.p-input input[type="file"]{
  cursor: pointer;
  width: 18em;
}
/*入力フォームまわり*/
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]){
  border-radius: 3px;
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
}
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]):focus{
  border: 1px solid var(--color-main1);
}
/*ラジオボタン・チェックボックス*/
.p-checklist{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.p-checklist > li{
  margin: 0 1em 1em 0;
  position: relative;
  display: flex;
}
.p-checklist label{
  display: inline-block;
  line-height: 1;
  margin-left: 1.2em;
  cursor: pointer;
}
.p-checklist input[type="radio"]{
  all: initial;
  background: url(/lp/website_fullorder/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}
.p-checklist input[type="radio"]:checked{
  background: url(/lp/website_fullorder/img/common/ico_radio01_2.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  all: initial;
  background: url(/lp/website_fullorder/img/common/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/lp/website_fullorder/img/common/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}
/*送信ボタン・リセットボタン*/
.p-formbutton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formbutton > button,
.p-formbutton > input{
  margin: 0 .5em;
}
@media screen and (max-width: 1080px) {
  .p-form__bg{
    padding: var(--container-w1) 40px;
  }
}
@media screen and (max-width: 560px) {
  .p-form__bg{
    padding: var(--container-w1) 20px;
  }
}
/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/
/*-------------------------------------------*/
.c-btn-icon01{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-icon01 > .icon{
  margin-right: 0.5em;
  display: inline-block;
}
.c-btn-icon01 > .icon img{
  width: 1.2em;
}
.c-btn-icon01 > .text{
  line-height: 1.4;
  display: inline-block;
}
.c-btn01{
  display: block;
  position: relative;
  padding: 10px 0 10px 1em;
  text-align: center;
  color: var(--color-main2)!important;
  background-color: var(--color-sub3);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 30px;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
}
.c-btn01::before{
  position: absolute;
  content: "";
  width: 1.3em;
  height: 1.3em;
  left: 2.5em;
  top: 52%;
  transform: translateY(-50%);
  background: url(/img/common/ico_contact_02.svg) center center / cover no-repeat;
}
.c-btn01:hover {
  transform: scale(1.08);
  opacity: 1;
  text-decoration: none;
}
.c-btn02{
  background: var(--color-wht);
  color: var(--color-main1) !important;
  text-decoration: none !important;
  padding: 1em calc(2em) 1em 1em;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--color-main1);
  border-radius: 10px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
}
.c-btn02::before{
  content: "";
  border: 2px solid var(--color-main1);
  border-top: none;
  border-left: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: calc(1em - 5px);
  max-width: 14px;
  height: calc(1em - 5px);
  max-height: 14px;
  transform: rotate(-45deg);
}
.c-formbtn01{
  border-radius: 3px;
  background: var(--color-main1);
  color: var(--color-wht);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn01:hover{
  opacity: .6;
}
.c-formbtn02{
  border-radius: 3px;
  background: var(--color-blk4);
  color: var(--color-blk1);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn02:hover{
  opacity: .6;
}
/*----------------------------------------*/
.c-link__list li {
  display: block;
  position: relative;
  padding-left: 1em;
}
.c-link__list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link__list li:after {
  display: none;
}
/*----------------------------------------*/
.c-box01{
  padding: 1em;
  border: 1px solid var(--color-blk2);
}
.c-box01 > p{
  margin: 0;
}
/*----------------------------------------*/
.c-title01{
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  padding: .5em 20px;
}
.c-title02{
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  padding-bottom: .5em;
  margin: 1em 0;
  position: relative;
}
.c-title02 span {
  font-size: .7em;
  font-weight: 500;
  color: var(--color-main2);
}
.c-title03{
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  padding: .5em .5em 1em;
  margin: 1em 0;
  position: relative;
  overflow: visible;
}
.c-title03 span {
  font-size: .7em;
  color: var(--color-main2);
}
.c-title03::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.4em;
  height: 2px;
  background: var(--color-main2);
  z-index: 1;
}
.c-title03::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 20px;
  height: 20px;
  z-index: 2;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--color-main2);
  pointer-events: none;
}
.c-title03 span::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 19px;
  height: 19px;
  z-index: 3;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 19px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 650px) {
  .c-title03::before {
    bottom: -11px;
  }
  .c-title03 span::before {
    bottom: -8px;
  }
}
.c-title04{
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-main2);
}
.c-title05{
  position: relative;
  font-size: 1.3em;
  font-weight: 700;
  color: var(--color-main2);
  text-align: center;
  padding: .5em;
  margin: 1em 0;
}
/*----------------------------------------*/
.c-ul__disc {
  list-style-type: none;
}
.c-ul__disc > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.c-ul__disc > li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-sub3);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}
.c-ul__disc02 {
  list-style-position: inside;
}
.c-ul__disc02 > li {
  list-style-type: disc;
}
.c-ul__number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul__number > li {
  margin-bottom: 0.5em;
}
.c-ul__number > li::marker {
  color: var(--color-blk1);
}
/*-------------------------------------------*/
.c-page__anchor{
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--color-main1);
}
.c-page__anchor > ul{
  display: flex;
  flex-wrap: wrap;
}
.c-page__anchor > ul > li {
  position: relative;
  padding: 0 1em 0 calc(20px + .5em);
  margin: .5em 1em .5em 0;
}
.c-page__anchor > ul > li:before {
  content: "";
  background: var(--color-main1);
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
.c-page__anchor > ul > li::after {
  content: "";
  border: 1px solid var(--color-wht);
  border-top: none;
  border-left: none;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: -6px;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
/*----------------------------------------*/
.c-table01 th,
.c-table01 td{
  border: 1px solid var(--color-blk3);
  padding: .5em;
}
.c-table01 th{
  background: var(--color-blk4);
}
/*-------------------------------------------*/
.c-pickup{
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-sub1);
}
a:has( > .c-pickup ){
  text-decoration: none;
}
.c-pickup__img{
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.c-pickup__img > img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 100%;
  object-fit: cover;
}
.c-pickup__text{
  padding: 15px;
}
.c-pickup__text > h3{
  font-weight: 500;
  color: var(--color-main1);
}
.c-pickup__text__category{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-pickup__text__category > span{
  margin: 0 5px 5px 0;
  padding: 0 5px;
  background: var(--color-sub2);
  text-align: center;
  font-size: 0.8em;
}
.c-pickup__text__category > span.day{
  background: none;
  padding: 0;
  margin-right: 10px;
  font-size: 1em;
}
/*-------------------------------------------*/
.c-tab01-list{
  display: flex;
  margin-bottom: -1px;
}
.c-tab01-list-item{
  text-align: center;
  padding: 0.5em 1.5em 0.4em;
  cursor: pointer;
  border: 1px solid var(--color-sub1);
  border-radius: 10px 10px 0 0;
  margin-right: 5px;
  transition: all .4s;
}
.c-tab01-list-item:hover{
  opacity: .6;
}
.c-tab01-contents{
  background: #FFF;
  border: 1px solid var(--color-sub1);
  display: none;
  padding: 20px;
}
.c-tab-btn-active{
  background: var(--color-sub2);
  font-weight: 700;
}
.c-tab-contents-active{
  display: block;
}
@media screen and (max-width: 660px) {
  .c-tab01-list{
    flex-wrap: wrap;
  }
  .c-tab01-list-item{
    border-radius: 10px;
    margin: 0 10px 10px 0;
  }
}
/*====================================================================
Utility…調整のための便利クラスなどを管理
====================================================================*/
.u-left {  text-align: left !important;}
.u-right {  text-align: right !important;}
.u-center {  text-align: center;}
.u-center--pc {  text-align: center;}
@media screen and (max-width: 1080px) {
	.u-center--pc {  text-align: left;}
	.u-center--sp {  text-align: center;}
}
.u-spbr,
.u-tabbr{
  display: none;
}
@media screen and (max-width: 768px) {
  .u-tabbr {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .u-spbr{
    display: block;
  }
}
.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-fntcolor--main1 {color: var(--color-main1) !important;}
.u-fntcolor--sub1 {color: #9bd5cc !important;}
.u-fntcolor--red {color: #e41010 !important;}
.u-fntcolor--orange {color: #e48510 !important;}
.u-fntcolor--yellow {color: #e4cf10 !important;}
.u-fntcolor--green {color: #0f9a00 !important;}
.u-fntcolor--blue {color: #1041e4 !important;}
.u-fntcolor--purple {color: #840bc0 !important;}
/*----------------------------------------*/
.u-m--layout01  {margin-top: var(--margin-big) !important;}
.u-m--layout02  {margin-top: var(--margin-middle) !important;}
.u-m--layout03  {margin-top: var(--margin-small) !important;}
.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w100p {  width: 100% !important;}
.u-wauto {  width: auto !important;}
.u-wmx320 {  width: 100% !important;max-width: 320px !important;}
.u-wmx560 {  width: 100% !important;max-width: 560px !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-main1)}
.u-border02{border:2px solid var(--color-main1)}
.u-bordertop01{border-top:1px solid var(--color-main1)}
.u-borderbottom01{border-bottom:1px solid var(--color-main1)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}
/*====================================================================
modal
====================================================================*/
/*モーダルを開くボタン*/
.modal-open{
  cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 100px);
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  z-index: 1;
  background: var(--color-main1);
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
}
@media screen and (max-width: 1080px) {
  .modal-container{
    height: calc(100vh - 56px);
  }
}
/*====================================================================
print
====================================================================*/
@media print {
	html,body {
    width: 1080px;
    margin: auto;
		-webkit-print-color-adjust: exact;
	}
  header {
		display: none;
	}
}
body.dark-mode {
  background-color: #222;
  color: #fff;
}
/*====================================================================
dark mode
====================================================================*/
@media (prefers-color-scheme: dark) {
  /* html全体の色を反転させる */
  html {
    filter: invert(1) hue-rotate(180deg);
  }
  /* 画像は再反転させて戻す */
  html img {
    filter: invert(1) hue-rotate(180deg);
  }
}
