@charset "UTF-8";

:root {
  --color_2c3e50: #2c3e50;
  --color_ecf0f1: #f2f2f2;
  --fontColor: rgb(38 39 43);
  --linkColor: #FBE47E;
  --gothic : "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  --mincho : '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  --marumozi: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  --warp-size: 96vw;
  --inner-size: 74vw;
  --font-size : 16px;
}

/* -- REST CSS -- */
* {
  color: var(--fontColor);
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  font-kerning: auto;
  text-decoration:none;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: var(--gothic); */
  line-height: 1.6;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: var(--font-size);
  letter-spacing: 0.02em;
}

html, body {
  scroll-behavior: smooth;
  background-color: var(--backColor);
}

.background-black{
  width: 100%; 
  background-color: #111;
}

.background-black *{
  color: #fff;
}

.background-white{
  width: 100%;
  background-color: #ecf0f1;
  color: #fff;
}

.yellow{
  color: #FBE47E;
}

/* -- wrap-size -- */
.wrap {
  width: var(--warp-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
}

.inner{
    width: var(--inner-size);
    margin-left: auto;
    margin-right: auto;
}

.width100{width:100%;}
.width90{width:90%;}
.width80{width:80%;}
.width70{width:70%;}
.width60{width:60%;}
.width50{width:50%;}
.width40{width:40%;}
.width30{width:30%;}
.width20{width:20%;}
.width10{width:10%;}

@media screen and (max-width:900px){
  *{
    font-size: calc((100vw - 840px) / 140 + (var(--font-size)*1.1));
  }
  .wrap{
    width: 96%;
  }
  .inner{
    width: 100%;
  }
}

@media screen and (max-width:640px){
  *{
    font-size: calc((100vw - 640px) / 100 + (var(--font-size)*1.1));
  }
}

@media screen and (min-width:901px){
  *{
    font-size: calc(var(--font-size)*1);
  }
}

@media screen and (min-width:1280px){
  *{
    font-size: calc(var(--font-size) + 1.1px);
  }
}

a.link {
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

a.link:hover,
a.link:focus,
a.link:active {
  outline: none;
  text-decoration: none;
}

a.link:hover {
  opacity: 0.5;
}

.link{
  color: var(--linkColor);
  text-decoration: underline;
}

a.link:hover{
  opacity: 0.5;
}

img, picture, video, canvas {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

input, button, textarea, select {
  border: 1px solid #dfdfdf;
  padding: .2rem .5rem;
  border-radius: 4px;
}

input[type=color],
input[type=range],
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=url],
input[type=datetime-local],
input[type=password],
input[type=number],
input[type=file],
textarea,
select{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s ease;
  font-size:92%;
}

input[type=submit],
input[type=button],
input[type=reset],
button[type=submit],
button[type=button],
button[type=reset],
button{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: .2rem .8rem;
  display: block;
  text-align: center;
  border-radius: 4px;
  font-size:90%;
  font-weight:bold;
}

input[type=submit][disabled],
input[type=button][disabled],
input[type=reset][disabled],
button[type=button][disabled],
button[type=reset][disabled],
button[type=submit][disabled] {
  border: 1px solid #ccc;
  background-color: #ccc;
  cursor: default;
  font-size:92%;
}

focus {
  outline: none;
}

input[type=color]:focus,
input[type=range]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=url]:focus,
input[type=datetime-local]:focus,
input[type=password]:focus,
input[type=number]:focus,
textarea:focus,
select:focus{
  background-color: #fff !important;
  border: 1px solid #1e90ff;
  outline: 1px solid #1e90ff;
}

input:hover,
input:focus,
input:active {
  outline: none;
}
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}
button {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
button:hover,
button:focus,
button:active {
  outline: none;
}
button:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
input[type=color],
input[type=range],
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=url],
input[type=datetime-local],
input[type=password],
input[type=number],
input[type=file],
select {
    font-size: 16px; /* 実フォントサイズ：ズームを防ぐため */
    transform: 100%; /* 見た目のサイズを縮小（16px × 0.75 = 12px） */
    transform-origin: left top; /* スケールの基点を左上に設定 */
    display: inline-block; /* transformを効かせるために必要な場合がある */
    width: calc(100% / 0.95);
    height: calc(2.4em / 0.8);
  }
}

  textarea{
    font-size: 16px; /* 実フォントサイズ：ズームを防ぐため */
    transform: 100%; /* 見た目のサイズを縮小（16px × 0.75 = 12px） */
    transform-origin: left top; /* スケールの基点を左上に設定 */
    display: inline-block; /* transformを効かせるために必要な場合がある */
    width: calc(100% / 0.95);
  }
}


/* 共通スタイル（ボタン全体に適用） */
button[class^="btn-"] {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-repeat: repeat-x;
    border-width: 1px;
    border-style: solid;
}

/* Danger ボタン */
.btn-danger {
    background-color: #da4f49;
    background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
    border-color: rgba(0, 0, 0, 0.1);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
    background-color: #bd362f;
}
.btn-danger:active,
.btn-danger.active {
    background-color: #942a25;
}

/* Success ボタン */
.btn-success {
    background-color: #5bb75b;
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    border-color: rgba(0, 0, 0, 0.1);
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
    background-color: #51a351;
}
.btn-success:active,
.btn-success.active {
    background-color: #408140;
}

/* Info ボタン */
.btn-info {
    background-color: #49afcd;
    background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
    border-color: rgba(0, 0, 0, 0.1);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
    background-color: #2f96b4;
}
.btn-info:active,
.btn-info.active {
    background-color: #24748c;
}

/* Inverse ボタン */
.btn-inverse {
    background-color: #363636;
    background-image: linear-gradient(to bottom, #444444, #222222);
    border-color: rgba(0, 0, 0, 0.1);
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
    background-color: #222222;
}
.btn-inverse:active,
.btn-inverse.active {
    background-color: #080808;
}

/* Secondary ボタン（シンプル） */
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-lg{
  padding: .5rem .7rem !important;
  border-radius: 6px !important;
  font-size: 95% !important;
}

.error-alert{
  color:#ff0000;
  margin-top:.4em;
}

/* ラジオボタン01 */
.radio1 input[type=radio] {
    display: none;
}
.radio1 label{
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 1px 30px;
    position: relative;
    width: auto;
}
.radio1 label::before {
    background: #fff;
    border: 1px solid #231815;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio1 label::after {
    background: var(--linkColor);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
.radio1 input[type=radio]:checked + label::after {
    opacity: 1;
}

/* -- テーブル -- */
table,
thead,
tbody{
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
  border-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}

table{
  text-align:left; 
}

table.table-bordered{
  border: 1px solid #efefef;
}

table.table-striped tr:nth-child(even){
  background: #efefef;
}

table.table-bordered th,
table.table-bordered td{
  border: 1px solid #efefef;
}

th,td{
  padding:0.5vw 0.5vw; 
  vertical-align: middle;
  font-size:92%;
}

th a,td a{
  font-size:92%;
}

th{
    font-weight : bold;
}

.table th,
.table td {
  border-bottom: .8px solid #ddd;
  background-color: #fff;
}

.table-design1 th,
.table-design1 td {
  padding: .5rem 1rem;
   border-bottom: .5px solid #ddd;
}

.table-design1 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* ヘッダーのスタイル */
.table-design1 th {
  background-color: #f4f4f4;
  background-color: #e5e5e5;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#e5e5e5));
  background-image: -webkit-linear-gradient(#f7f6f6, #ededed);
}

/* 行のホバーエフェクト */
.table-design1 tr:hover {
  background-color: #f1f1f1;
}

/* 奇数・偶数行の背景色を交互に変更 */
.table-design1 tr:nth-child(odd) {
  background-color: #fafafa;
}

.table-design1 tr:nth-child(even) {
  background-color: #fff;
}

@media screen and (max-width: 800px) {
    .table-wrapper {
      max-width:800px;
      overflow-x: auto;
    }
}

blockquote{
  text-align: justify;
  background-color: #f5f5f5;
  padding: 25px;
  margin: 20px 0 20px 0;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}

blockquote *{
  background:none !important;
  box-sizing: border-box !important;
  outline: none !important;
  list-style: none !important;
  font-kerning: auto !important;
  font-style: normal !important;
  text-decoration: none !important;
  font: inherit !important;
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-scroll{
  overflow-x: scroll;
}

.overflow-y-scroll{
  overflow-y:scroll;
}

/* flex-wrap */
.wrap-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  display: flex;
  flex-wrap: wrap-reverse;
}

/* align-items */
.align-items-flex-start {
  display: flex;
  align-items: flex-start;
}

.align-items-flex-end {
  display: flex;
  align-items: flex-end;
}

.align-items-center {
  display: flex;
  align-items: center;
}

.align-items-baseline {
  display: flex;
  align-items: baseline;
}

.align-items-stretch {
  display: flex;
  align-items: stretch;
}

/* align-content */
.align-content-flex-start {
  display: flex;
  align-content: flex-start;
}

.align-content-flex-end {
  display: flex;
  align-content: flex-end;
}

.align-content-center {
  display: flex;
  align-content: center;
}

.align-content-space-between {
  display: flex;
  align-content: space-between;
}

.align-content-space-around {
  display: flex;
  align-content: space-around;
}

.align-content-stretch {
  display: flex;
  align-content: stretch;
}

.justify-content-stretch {
  display: flex;
  justify-content: stretch;
}

.justify-content-start {
  display: flex;
  justify-content: flex-start ;
}

.justify-content-end {
  display: flex;
  justify-content: flex-end ;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

.justify-content-space-between {
  display: flex;
  justify-content: space-between;
}

.justify-content-space-around {
  display: flex;
  justify-content: space-around ;
}

.row-reverse{
  flex-direction: row-reverse !important;
}

.column-reverse{
  flex-direction: column-reverse !important; 
}

/* -- パンくずリスト -- */

.breadcrumb *{
  font-size: 92%;
}

.breadcrumb ol{
  display: flex;
  flex-wrap: wrap;
  align-items:center;
}

.breadcrumb ol > * + *:before{
  content: ">";
  margin-left:.5rem;
  margin-right:.5rem;
}

.breadcrumb ol a{
  color: var(--linkColor);
  text-decoration:underline;
}

.breadcrumb ol span,
.breadcrumb ol .active{
  font-weight: bold;
}

/* 共通スタイル: ウェイトと行の高さ */
.font-size1,
.font-size2,
.font-size3,
.font-size4,
.font-size5,
.font-size6 {
  font-weight: 300;
  line-height: 1.2;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: .5rem;
  font-weight: bold;
  line-height: 1.2;
}

/* フォントサイズ（レスポンシブ対応） */
.font-size1 { font-size: calc(1.625rem + 4.5vw); }
.font-size2 { font-size: calc(1.575rem + 3.9vw); }
.font-size3 { font-size: calc(1.525rem + 3.3vw); }
.font-size4 { font-size: calc(1.475rem + 2.7vw); }
.font-size5 { font-size: calc(1.425rem + 2.1vw); }
.font-size6 { font-size: calc(1.375rem + 1.5vw); }

/* 見出しスタイル（レスポンシブ対応） */
.h1 { font-size: calc(1.375rem + 1.5vw); }
.h2 { font-size: calc(1.325rem + 0.9vw); }
.h3 { font-size: calc(1.3rem + 0.6vw); }
.h4 { font-size: calc(1.275rem + 0.3vw); }
.h5 { font-size: 1.25rem; }
.h6 { font-size: 1rem; }

.font-size80{
  font-size: 80%;
}

.font-size50{
  font-size: 50%;
}

/* メディアクエリ: 1280px以上で固定サイズに */
@media screen and (min-width: 1280px) {
  .font-size1 { font-size: 5rem; }
  .font-size2 { font-size: 4.5rem; }
  .font-size3 { font-size: 4rem; }
  .font-size4 { font-size: 3.5rem; }
  .font-size5 { font-size: 3rem; }
  .font-size6 { font-size: 2.5rem; }

  .h1 { font-size: 2.5rem; }
  .h2 { font-size: 2rem; }
  .h3 { font-size: 1.75rem; }
  .h4 { font-size: 1.5rem; }
  .h5 { font-size: 1.25rem; }
  .h6 { font-size: 1rem; }
}

.read-text{
  text-align:justify;
  margin-bottom: .8rem;
}

.read-text a{
  text-decoration: underline;
  color: var(--linkColor);
}

.textAlign-center{text-align:center;}
.textAlign-left{text-align:left;}
.textAlign-right{text-align:right;}
.textAlign-justify{text-align:justify;}

.opacity-1 {opacity: 1;}
.opacity-8 {opacity: 0.8;}
.opacity-6 {opacity: 0.6;}
.opacity-4 {opacity: 0.4;}
.opacity-2 {opacity: 0.2;}
.opacity-0 {opacity: 0;}

/* -- space -- */
.space1 > * + *{margin-top: .5rem;}
.space2 > * + *{margin-top: 1rem;}
.space3 > * + *{margin-top: 1.5rem;}
.space4 > * + *{margin-top: 2rem;}
.space5 > * + *{margin-top: 2.5rem;}

.mt-1{margin-top: .5rem;}
.mt-2{margin-top: 1rem;}
.mt-3{margin-top: 2.5rem;}
.mt-4{margin-top: 2rem;}
.mt-5{margin-top: 2.5rem;}
.mb-1{margin-bottom: .5rem;}
.mb-2{margin-bottom: 1rem;}
.mb-3{margin-bottom: 1.5rem;}
.mb-4{margin-bottom: 2rem;}
.mb-5{margin-bottom: 2,5rem;}

.mlr-auto{margin-left: auto;margin-right: auto;}

.pt-1{margin-top: .5rem;}
.pt-2{margin-top: 1rem;}
.pt-3{margin-top: 2.5rem;}
.pt-4{margin-top: 2rem;}
.pt-5{margin-top: 2.5rem;}
.pb-1{margin-bottom: .5rem;}
.pb-2{margin-bottom: 1rem;}
.pb-3{margin-bottom: 1.5rem;}
.pb-4{margin-bottom: 2rem;}
.pb-5{margin-bottom: 2,5rem;}

.ptb-1{padding-top:.5rem; padding-bottom:.5rem;}
.ptb-2{padding-top:1rem; padding-bottom:1rem;}
.ptb-3{padding-top:1.5rem; padding-bottom:1.5rem;}
.ptb-4{padding-top:2rem; padding-bottom:2rem;}
.ptb-5{padding-top:2.5rem; padding-bottom:2.5rem;}

@media (max-width: 640px) {
  /* -- space -- */
.space1 > * + *{margin-top: calc(1rem - 1%);}
.space2 > * + *{margin-top: calc(2rem - 3%);}
.space3 > * + *{margin-top: calc(3rem - 5%);}
.space4 > * + *{margin-top: calc(4rem - 7%);}
.space5 > * + *{margin-top: calc(5rem - 9%);}

.mt-1{margin-top: calc(1rem - 1%);}
.mt-2{margin-top: calc(2rem - 3%);}
.mt-3{margin-top: calc(3rem - 5%);}
.mt-4{margin-top: calc(4rem - 7%);}
.mt-5{margin-top: calc(5rem - 9%);}
.mb-1{margin-bottom: calc(1rem - 1%);}
.mb-2{margin-bottom: calc(2rem - 3%);}
.mb-3{margin-bottom: calc(3rem - 5%);}
.mb-4{margin-bottom: calc(4rem - 7%);}
.mb-5{margin-bottom: calc(5rem - 9%);}

.pt-1{padding-top: calc(1rem - 1%);}
.pt-2{padding-top: calc(2rem - 3%);}
.pt-3{padding-top: calc(3rem - 5%);}
.pt-4{padding-top: calc(4rem - 7%);}
.pt-5{padding-top: calc(5rem - 9%);}
.pb-1{padding-bottom: calc(1rem - 1%);}
.pb-2{padding-bottom: calc(2rem - 3%);}
.pb-3{padding-bottom: calc(3rem - 5%);}
.pb-4{padding-bottom: calc(4rem - 7%);}
.pb-5{padding-bottom: calc(5rem - 9%);}

.ptb-1{padding-top: calc(1rem - 1%); padding-bottom: calc(1rem - 1%);}
.ptb-2{padding-top: calc(2rem - 3%); padding-bottom: calc(2rem - 3%);}
.ptb-3{padding-top: calc(3rem - 5%); padding-bottom: calc(3rem - 5%);}
.ptb-4{padding-top: calc(4rem - 7%); padding-bottom: calc(4rem - 7%);}
.ptb-5{padding-top: calc(5rem - 9%); padding-bottom: calc(5rem - 9%);}
}

/* -- load object -- */
#loading-screen {
  opacity: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: #ffffff;
  transition: all .7s ease;
}

.spinner {
  border: 8px solid #ededed;
  border-top: 8px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

/* アニメーションの定義 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* -- pager -- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination li a:hover,
.pagination li.active span{
  background-color: #e4e4e4;
}

/* 非アクティブなリンクのスタイル */
.pagination li.disabled a,
.pagination li.disabled span {
  font-weight:bold;
}

.table-pagination b,
.table-pagination a{
  font-size:90%;
  padding:10px;
  border-radius:3px;
}

.table-pagination b.active{
  color:var(--linkColor);
  font-size:100%;
}

/* レスポンシブ対応 */
@media (max-width: 840px) {
  .pagination li a,
  .pagination li span {
      padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .pagination li a,
  .pagination li span {
      padding: 6px 3px;
  }
}

/* -- menu -- */
.hanbager-menu{
  display: none;
}

@media (max-width: 840px) {
  .hanbager-menu,
  .hanbager-menu > * {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .hanbager-menu{
    position: relative;
    width: 50px;
    height: 44px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }
  .hanbager-menu > * {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
  }
  .hanbager-menu > *:nth-of-type(1) {
    top: 0;
  }
  .hanbager-menu > *:nth-of-type(2) {
    top: 20px;
  }
  .hanbager-menu > *:nth-of-type(3) {
    bottom: 0;
  }
  .hanbager-menu:hover > *:nth-of-type(1) {
    transform: translateY(20px) rotate(-45deg);
  }
  .hanbager-menu:hover > *:nth-of-type(2) {
    opacity: 0;
  }
  .hanbager-menu:hover > *:nth-of-type(3) {
    transform: translateY(-20px) rotate(45deg);
  }
}

.badge{
  background-color:#000;
  color:#fff;
  padding:.5em .5em;
  border-radius:.4em;
  font-size: 0.5em;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  margin-left: .4em;
}

.bg-img{
  position: relative;
  max-width:900px;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
}

.bg-img img{
  opacity: 1;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
  transform: scale(1);
  transition: transform 1.5s ease, opacity 2s ease;
  background-color: #000
}

.searchBox{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  white-space: nowrap;
  border-radius: 30px;
  border: 1px solid rgb(206, 212, 218);
  padding-left:.5em;
  background: #fff;
}

.searchBox input,
.searchBox input:focus{
  border:none;
  outline:none;
  box-sizing: content-box;
  background: none !important;
  height: 1.7em;
  margin: 0px;
  -webkit-tap-highlight-color: transparent;
  display: block;
  min-width: 0px;
  width: 100%;
  animation-name: mui-auto-fill-cancel;
  animation-duration: 10ms;
}

.list-group-item {
    background: rgb(255, 255, 255);
    padding: 0px;
    list-style: none;
    border-radius: 6px;
    border: 1px solid rgb(227, 232, 238);
    overflow-y: scroll;
}

.list-group-item > * {
    display: flex;
    height: 3em;
    padding: .8rem .8rem;
    border-bottom: 1px solid rgb(227, 232, 238);
    -webkit-box-align: center;
    align-items: center;
}

.dismissible{
  padding: 0.4rem 1rem;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(223, 225, 229);
  border-radius: 6px;
  font-size:90%;
}

.dismissible-alert{
    color: rgb(247, 45, 60);
    background-color: rgb(255, 235, 239);
    text-align:center;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    border: 1px solid rgb(247, 45, 60);
    font-size:90%;
  }

.dismissible-alert a{
  color: rgb(247, 45, 60);
  text-decoration:underline;
}

.check-bar > input + span{
  position: relative;
  padding: 10px 10px 10px 45px;
  transition: .3s;
  color: #444;
  background: #f9f7f3;
  display: inline-block;
  line-height: 1.7;
  width: 100%;
  border-radius: 5px;
}

.check-bar input{
  display:none;
}

.check-bar > input:checked + span {
  background: #ff5353;
  color: #fff;
}

.check-bar > input + span:before {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 30px;
  margin: auto 0;
  height: 15px;
  border-radius: 15px;
  border: 1px solid #aaa;
  background: #fff;
  position: absolute;
}

.check-bar > input + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto 0;
  width: 13px;
  height: 13px;
  background: #aaa;
  border-radius: 50%;
  transition: .2s;
}

.check-bar > input:checked + span::before {
  border: 1px solid #caa4c0;
}

.check-bar > input:checked + span::after {
  left: 25px;
  background: #ff5353;
} 
  
.grid-center > *{
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-space10{--grid-space:10px;}
.grid-space15{--grid-space:15px;}
.grid-space20{--grid-space:20px;}

.grid2,
.grid3,
.grid4,
.grid5 {
  gap: var(--grid-space);
}

.grid2 > * {flex-basis: calc((100% - var(--grid-space)*1) / 2);}
.grid3 > * {flex-basis: calc((100% - var(--grid-space)*2) / 3);}
.grid4 > * {flex-basis: calc((100% - var(--grid-space)*3) / 4);}
.grid5 > * {flex-basis: calc((100% - var(--grid-space)*4) / 5);}

.grid_1-4{
  display:grid;
  grid-template-columns: 1fr 4fr;
  gap: var(--grid-space);
}

.grid_4-1{
  display:grid;
  grid-template-columns: 4fr 1fr;
  gap: var(--grid-space);
}

.grid_3-2{
  display:grid;
  grid-template-columns: 3fr 2fr; 
  gap: var(--grid-space);
}

.grid_2-3{
  display:grid;
  grid-template-columns: 2fr 3fr; 
  gap: var(--grid-space);
}

.grid_5-1{
  display:grid;
  grid-template-columns: 5fr 1fr;
  gap: var(--grid-space);
}

.grid_1-5{
  display:grid;
  grid-template-columns: 1fr 5fr;
  gap: var(--grid-space);
}

.grid_1-9{
  display:grid;
  grid-template-columns: 1fr 9fr;
  gap: var(--grid-space);
}

.grid_9-1{
  display:grid;
  grid-template-columns: 9fr 1fr;
  gap: var(--grid-space);
}

@media (max-width: 800px) {
  .grid100-800px{
    gap: 0px;
    grid-template-columns: none;
    display: block;
  }
  .grid100-800px > *{
    flex-basis: 100%;
  }
  .grid100-800px > *+*{
    margin-top:1em;
  }
}

.broad-box{
    height: 100vh;
    height: -webkit-fill-available;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
}

/* -------------- config settings ---------------- */

.gray-filter{
  -webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all  0.7s ease;
}

.title {
		text-align: center;
		padding: 140px 10%;
		background-size: cover;
		background-position: center center;
}
.title h2 {
		font-weight: 700;
		margin-top: 10px;
		letter-spacing: 0.1em;
}
.title p {
		font-weight: 700;
		text-align: center;
		font-size: 1em;
		letter-spacing: 0.2em;
		width: 100%;
}

header{
    position: relative;
    height: 100vh;
    width: 100%;
  background-color:hsl(0deg 0% 7% / 85%);
}

.header__background{
  top:0;
  left:0;
  position: absolute;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  z-index:-1;
}

.header__inner{
	position: absolute;
	width:100%;
	padding:40px 5%;
	box-sizing:border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 5;
}

.header__logo{
	width: 150px;
	display:block;
}

.fa-bars{color:#333;}
.fa-times{color:#fff; font-weight: normal;}

.header__inner nav ul{
    display: flex;
    margin-top:10px;
}

.header__nav ul li+li{
    border-left:1px solid #fff;
}

.header__nav ul a{
	font-weight:bold;
	display: inline-block;
    padding: 0px 29px;
    letter-spacing: .1em;
    line-height:136%;
    color: #fff;
}


/* =====================
       Animation
    ====================== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }


.hero__wrap{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100vh;          /* 画面いっぱい */
  display: flex;
  align-items: center;    /* 縦中央 */
  justify-content: center;/* 横中央 */
  z-index: 1;
}


    /* =====================
       Hero
    ====================== */
    .hero {
          margin-top: 10vw;
          width: 100%;
          text-align: center;
          display: block;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      color: #fff;
      text-align:center;
      line-height:1.2em;
    }

    .hero h1 span{
      font-size: 48px;
      color:#FBE47E;
    }
    .hero p {
      color: #fff;
       text-align:center;
    }

    .btn {
      display: inline-block;
      margin: 30px auto;
      width:300px;
      padding: 15px 0;
      background-color:#FBE47E;
      color: #000000;
      text-decoration: none;
      font-weight: bold;
      border: 2px solid #FBE47E;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: #FFD400;
      color: #111;
      transform: translateY(-5px);
    }

#philosophy{
  position: relative;
  padding-bottom:140px;
  overflow: hidden;
}

#philosophy p.text {
    width: 64%;
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 217%;
    text-align: center;
    margin: 0 auto;
}

#philosophy:after {
		position: absolute;
		content: "PHILOSOPHY";
		letter-spacing: .1em;
		font-size: 9vw;
		font-weight: bold;
		z-index: -1;
		color: rgba(13, 44, 100, 0.0392156862745098);
		transform: rotate(0deg);
		transform-origin: bottom left;
		left: 2%;
		bottom: -6%;
}


.h1 {
    display: inline;
    padding: 0 0.3em;
    line-height: 1.6em;
    background-color:  #FBE47E;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}


#service{
   position: relative;
  padding-bottom: 280px;
  overflow: hidden;
}

#service:after {
		position: absolute;
		content: "SERVICE";
		letter-spacing: .1em;
		font-size: 12vw;
		font-family: 'NotoSansjp-Bold';
		font-weight: bold;
		z-index: -1;
		color: rgba(13, 44, 100, 0.0392156862745098);
		transform: rotate(0deg);
		transform-origin: bottom left;
		right: 0%;
		bottom: -2%;
}

#service dl{
  display: flex;
  align-content: space-between;
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
}

#service dl + dl {
		margin-top: 110px;
}

#service dl dd {
    position: absolute;
    top: 0;
    width: 85%;
    height: 100%;
    background-position: 50%;
    background-size: cover;
}

#service dl dt {
  text-align: justify;
  position: absolute;
  width: 56%;
  z-index:1;
  padding: 6% 6%;
  background-color: hsl(48.57deg 95.45% 74.12% / 91%);
}

#service dl:nth-child(even) dt{
   margin-right:5%;
   right: 0;
} 

#service dl:nth-child(even) dd{
  left: -10%;
} 

#service dl:nth-child(odd) dt{
  margin-left:5%;
   left: 0;
} 

#service dl:nth-child(odd) dd{
  right: -10%;
} 

#service h3{
  margin-bottom: 0.5em;
}


#about{
  position:relative;
  padding-bottom: 140px;
  overflow: hidden;
  z-index: -2;
}


#about:after {
		position: absolute;
		content: "ABOUT";
		letter-spacing: .1em;
		font-size: 12vw;
		font-family: 'NotoSansjp-Bold';
		font-weight: bold;
		z-index: -1;
		color: rgb(255 255 255 / 4%);
		transform: rotate(0deg);
		transform-origin: bottom left;
		left: 0%;
		bottom: -11%;
}

.about__inner{
  width: 70%;
		margin: 0 auto;
  
}

#about dt:last-of-type, #about dd:last-of-type {
		border-bottom: 1px solid #ffffff;
}
#about dt, #about dd {
		border-top: 1px solid #ffffff;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
}
#about dt {
		color: #fff;
		width: 20%;
		padding: 30px 0 28px;
		font-weight: bold;
		text-align: center;
		letter-spacing: .1em;
		float: left;
		clear: left;
}
#about dd {
		color: #fff;
		letter-spacing: .1em;
		width: 80%;
		margin-left: 20%;
		padding: 30px 0 28px 50px;
		border-left: 1px solid #ffffff;
}

/* ---- contact section ---- */
#contact{
  position:relative;
  padding-bottom: 140px;
  overflow: hidden;
}

#contact:after {
		position: absolute;
		content: "CONTACT";
		letter-spacing: .1em;
		font-size: 12vw;
		font-family: 'NotoSansjp-Bold';
		font-weight: bold;
		z-index: -1;
		color: rgba(13, 44, 100, 0.0392156862745098);
		transform: rotate(0deg);
		transform-origin: bottom left;
		left: 0%;
		bottom: -5%;
}


.contact-wrap {
  width: 50%;
  margin: 0 auto;
}

.form__wrap{
  padding-bottom: 20px;
}

.contact__text{
  text-align: center;
  padding-bottom: 70px;
}

.contact-wrap dl {
  display: flex;
  justify-content: space-between;
}

.contact-wrap dl+dl {
  border-top: 1px solid #eee;
  margin-top: 4%;
  padding-top: 4%;
}

.contact-wrap dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 28%;
}

.contact-wrap dd {
  width: 70%;
}

form label {
  display:block;
  font-weight:bold;
  padding-left:.2em;
  padding-bottom:.3em;
}


.contact-must {
  margin-left: 8px;
   margin-bottom: 3px;
  background: #FBE47E;
  border-radius: 5px;
  padding: 5px 5px;
  line-height: 1;
  font-size: 71%;
  display: inline-block;
  vertical-align: middle;
}

form input[type=text], 
form input[type=tel], 
form input[type=email], 
form textarea {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		font-size: 18px;
		margin-bottom: 5px;
		padding: 16px;
		font: inherit;
		line-height: inherit;
		background: 0 0;
		border: 1px solid #dfdfdf;
		outline: none;
		-webkit-appearance: none;
		background-color: #fff;
		border-radius: 5px;
}

.error-alert {
  color: #ff0000;
  letter-spacing: .1em;
  margin-top: 1%;
  display: none;
}

form #submit {
  margin: 10% auto 0;
  width: 280px;
  padding:14px 0;
}


footer{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer__logo{
  width: 100%;
  max-width: 205px;
  margin: 0 auto;
  display: block;
}

.footer__nav{
  padding-top: 2rem;
	text-align:center; 
}

.footer__nav li{
	display:inline-block;
	margin:0 15px;
}

.footer__nav li+li a{
	border-left: 1px solid #fff;
	padding-left:25px;
	}

.footer__nav li a{
	font-size:15px;
	color:#fff;
  font-weight: bold;
}

.footer__copylight{
  padding-top: 4rem;
  font-weight: bold;
}


/* 背景を少し暗くする */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* メッセージボックス */
  .message-box {
    position: relative;
    background: #fff;
    padding: 30px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
  }

  /* 閉じるボタン */
  .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
  }

  .close-btn:hover {
    color: #000;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }




/* ============================================ */
/*   max-740px */
/* =============================================== */
@media screen and (max-width:740px){

  .menu-hamburger>* {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-hamburger {
    display: block !important;
    position: fixed;
    top: 3%;
    right: 3%;
    z-index: 10;
    margin-right: 16px;
    width: 32px;
    height: 30px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }

  .menu-hamburger>* {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 1px;
  }

  .menu-hamburger>*:nth-of-type(1) {
    top: 0px;
  }

  .menu-hamburger>*:nth-of-type(2) {
    top: 14px;
  }

  .menu-hamburger>*:nth-of-type(3) {
    bottom: 0px;
  }

  .menu-hamburger.add>*:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }

  .menu-hamburger.add>*:nth-of-type(2) {
    opacity: 0;
  }

  .menu-hamburger.add>*:nth-of-type(3) {
    transform: translateY(-14px) rotate(45deg);
  }

  
  .header__logo{
      width:36%;
    margin-left:3%;
     margin-top:-4%;
	}

   header nav{
     top:0;
     left:0;
     opacity: 0;
     display:none;
     background-color:#383733fa;
     position:fixed;
     width:100%;
     height:100%;
     z-index:0;
     align-items: center;
 }
  
nav.header__nav.add{
  z-index:5;
  opacity: 1;
  display:flex;
}

  .header__inner nav ul{
    display: flex;
    margin-top:0px;
    display:inline-block;
     width:100%;
}

  .header__nav ul li{
    width:100%;
}


.header__nav ul li+li{
  margin-top:28px;
    border-left:none;
}

.header__nav ul a{
	font-weight:bold;
	display: inline-block;
    padding: 0px 29px;
    letter-spacing: .1em;
    line-height:136%;
    color: #fff;
  width:100%;
}

   .hero h1 {
      font-size: 1.9em;
      margin-bottom: 20px;
      color: #fff;
      text-align:center;
      line-height:1.2em;
    }

    .hero h1 span{
      font-size: 1em;
    }
  
    .hero p {
      padding:0 8%;
       text-align:justify;
    }

  .hero p br{
    display:none;
  }

  #philosophy p.text {
    margin-top:40px;
    width: 84%;
    text-align:justify;
}

  #philosophy p.text br{
    display:none;
  }

  #service dl:nth-child(even) dt{
   margin-right:0%;
} 

#service dl:nth-child(odd) dt{
  margin-left:0%;
} 

#service dl:nth-child(odd) dd{
  right: -10%;
} 
  
  #service dl{
  height: 480px;
}

  #service dl dd {
    width: 95%;
}

#service dl dt {
  width: 86%;
  z-index:1;
  padding: 10% 8%;
}


  .contact__text{
  text-align: justify;
  padding-bottom: 70px;
}

  .contact-wrap {
  max-width: 640px;
    width:90%;
  margin: 0 auto;
}

  .about__inner{
  width: 80%;
		margin: 0 auto;
  
}

  #about dt {
    text-align: left;
    padding: 30px 0 10px 5%;
    width: 100%;
  }
  #about dd {
  width: 100%;
  margin-left: 0%;
  padding: 30px 0 30px 5%;
  border-left: none;
  }
  #about dt:last-of-type {
  border-bottom: none;
  }


  
  /*====== footer =====*/
	.footer__content{padding:6% 0;}
	.footer__wrap+.footer__wrap{margin-top:3%;}
	.footer__nav{text-align:left;}

	.footer__nav li{
		display:block;
		margin:0 15px;
      position:relative;
	}

  .footer__nav li:after{
    content:">";
    position:absolute;
    right:0;
  }

  .footer__nav {
    margin-top:5%; 
  }

  .footer__nav li+li{
      margin-top:5%; 
  }

	.footer__nav li+li a{border-left: none;; padding-left:0px;}
	.footer__wrap div+div{border-left: none;}
	.footer__wrap div{display:block; padding:5px 2%;}


    /* メッセージボックス */
  .message-box {
    padding: 95px 20px;
  }
}
