@charset "UTF-8";

/* =======================================

	reset

======================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

html {
  overflow-y: scroll; 
  font-size: 100%;
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 0%;
  }
}

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none; }

input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: none;
}

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

a:focus {
  outline: none; }

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; }

.clearfix {
  min-height: 1px; }

* html .clearfix {
  height: 1px;}

*, *:before, *:after {
  box-sizing: border-box; }

/* =======================================

	初期設定

======================================= */


html {
    margin-top: 0 !important;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #3C3C3C;
    font-family: "Montserrat", "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
}

p{ 
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  transform: rotate(0.05deg);
}

a {
  color: #3C3C3C;
  text-decoration: none;
  transition: .3s;
  transform: rotate(0.05deg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.pc{
  display: block;
}

.sp{
  display: none;
}


@media screen and (max-width: 768px) {

  p{
    font-size: 15px;
    text-align: left;
    letter-spacing: 0.02em;
  }
  
  .pc{
    display: none;
  }
  
  .sp{
    display: block;
  }

  th,
  td{
    font-size: 14px;
  }

}

/* =======================================
	animation
======================================= */

/* --- Loading Overlay --- */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #E75F2A;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- 2つの丸が交互に弾むローディング --- */
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  background-color: #fff; /* ← 必要なら変えてOK */
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

/* --- 回転アニメ --- */
@keyframes sk-rotate {
  100% { transform: rotate(360deg); }
}

/* --- 丸が交互に大きくなるアニメ --- */
@keyframes sk-bounce {
  0%, 100% { transform: translateX(-50%) scale(0.0); }
  50% { transform: translateX(-50%) scale(1.0); }
}

/* --- ローディング非表示 --- */
.loaded {
  opacity: 0;
  visibility: hidden;
}



/* 下からふわっと表示 */
.fade-up {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

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


/* 下からぴょこっと表示 */
.section--hero .hero-title{
  display: block;
  overflow: hidden;
}

.section--hero .hero-title span{
  display: block;
  transform: translateY(100%);
  animation: textUp 1s ease forwards;
}

@keyframes textUp {
  0%   { transform: translateY(100%); }
  100% { transform: translateY(0); }
}



/* =======================================

    page-ttl

======================================= */

#page-title {
  position: relative;
}

#page-title img {
  margin: 0 auto;
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: relative;
  object-position: center;
}

#page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 薄い黒 (透明度30%) */
  pointer-events: none; /* クリックやホバーイベントを無効にする */
}

#page-title .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  margin: 0 auto;
  z-index: 1;
}

.no-image{
  height: 30vw;
  background-color: #ddd;
}

@media screen and (max-width: 768px) {

  #page-title img {
  height: 250px;
  }


  .no-image{
    height: 50vw;
  }

  #page-title .ttl{
    font-size: 24px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
}



/* =======================================

    text

======================================= */

h1 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: rotate(0.05deg);
  font-family: "Zen Kaku Gothic New", sans-serif;
}

h3 {
  font-size: clamp(32px, 2.5vw, 40px);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

h4 {
  font-size: clamp(26px, 2vw, 30px);
}

.tac{
  text-align: center;
}

.txt-under{
  padding: 2px 0;
  border-bottom: dotted 1px red;
}

.txt-bold{
  font-weight: 700;
  transform: rotate(0.05deg);
}

.attention{
  font-size: 14px;
}

.attention__list li{
  margin-bottom: 7px;
}

@media screen and (max-width: 750px) {

h1 {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: rotate(0.05deg);
}

h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.04em;
  line-height: normal;
  color: #3c3c3c;
}

h2 span {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-left: 2px;
  line-height: normal;
  color: #3c3c3c;
}

h3 {
  font-size: 26px;
  letter-spacing: 0.02em;
  white-space: unset;
}

  
}


.color-loop {
  display: inline-block;
}

.color-loop span {
  display: inline-block;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.color-loop span:nth-child(4n + 1) {
  color: #E75F2A;
}

.color-loop span:nth-child(4n + 2) {
  color: #FACB3B;
}

.color-loop span:nth-child(4n + 3) {
  color: #1F6FB5;
}

.color-loop span:nth-child(4n + 4) {
  color: #AAD72A;
}



/* =======================================

	ul

======================================= */

.list{
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
  line-height: 1.7em;
}


/* =======================================

	投稿

======================================= */


.blog01-in-area a{
    display: flex;
    gap: 0 20px;
    justify-content: flex-start;
    align-items: center;
    padding: 30px;
}

.blog01-in {
  border-top: solid 1px #DEE1E4;
}

.blog01-in:last-of-type{
  border-bottom: solid 1px #DEE1E4;
}

.blog01-in-item {
  display: flex;
  align-items: center;
  gap: 0 20px;
}


@media screen and (max-width: 768px) {

  .blog01-in-item {
    gap: 0 10px;
    margin-bottom: 10px;
  }

  .blog01-in-area a{
    display: block;
    gap: 0 10px;
    font-size: 14px;
    padding: 20px;
}

}

.blog02-in{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.blog02-in-area{
  width: calc(33% - 10px);
}

.blog02-in-item{
  margin-bottom: 20px;
}


@media screen and (max-width: 768px) {
  .category-ttl {
    font-size: 14px;
    display: block;
  }

  .blog01-in-area .category-ttl {
    font-size: 14px;
    line-height: 180%;
  }
  
  .blog02-in-area .category-ttl {
    font-size: 14px;
    line-height: 180%;
  }

  .blog02-in{
    flex-direction: column;
    gap: 0px;
  }

  .blog02-in-area{
    width: 100%;
  }

  .blog02-in-area:not(:first-child) {
    display: none; /* 1つ目以外を非表示 */
  }
  
}

.category {
  width: max-content;
  font-size: 14px;
}

.thumbnail {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.date{
  font-size: 15px;
}

.category-ttl {
  display: block;
  font-size: 16px;
  font-style: normal;
  line-height: 170%;
  letter-spacing: 0.08em;
  transform: rotate(0.05deg);
}

.cat-news {
  background-color: #1F6FB5;
  padding: 5px 0px;
  color: #FFF;
  border-radius: 100px;
}

.cat-kujokaiketsu {
  background-color: #AAD72A;
  padding: 5px 0px;
  color: #FFF;
  border-radius: 100px;
}

@media screen and (max-width: 767px) {

  .category {
  padding: 2px 10px;
  font-size: 12px;
  }



  .date-category .date{
    margin-bottom: 6px;
  }

  .category-item{
    width: 100%;
    display: block;
    flex-wrap: wrap;
    gap: 10px;
  }

  .category .category-item li {
    word-break: break-all;
    width: auto;
    padding: 2px 15px;
    border: 1px solid #FEDBE5;
    font-size: 12px;
    color: #3C3C3C;
    text-align: center;
  }

  .category .month li:ahover {
    text-decoration: none;
  }

}


#blog .btn-wrap{
  text-align: right;
}

#blog .blog02-in-item.col-2{
  gap: 0 10px;
  align-items: center;
}

#blog .blog02-in-item.col-2 > div{
  width: max-content;
}

@media screen and (max-width: 768px) {

  #blog .blog02-in-item.col-2{
    flex-direction: row;
    align-items: center;
    gap: 0 10px;
  }

  .blog02-in-item.col-2{
    margin-bottom: 10px;
  }

}


/* =======================================

	カテゴリーページ

======================================= */

#contents-category{
  background-color: #FAF8F4;
}

#contents-category .inner {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 60px;
  width: 100%;
  overflow: hidden;
  padding: 120px 10% 260px 10%;
  margin: 0;
}


@media screen and (max-width: 768px) {
  #contents-category .inner {
    display: flex; /* 768px以下ではflexboxに */
    flex-direction: column-reverse; /* 上下を逆にする */
    max-width: 100%;
    padding: 60px 20px 160px 20px;
    margin: 0;
    gap: 20px;
  }
}

#category-main .article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #ddd;
}

@media screen and (max-width: 768px) {
  #category-main .article {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}

#category-main .article .date {
  margin-bottom: 15px;
}

#category-main .article a{
  text-decoration: underline;
}

#category-side a {
  display: block;
  width: 100%;
  padding: 4px 0;
  text-align: left;
}

#category-side a:hover {
  color: #f8d34b;
  text-decoration: underline;
}

#category-side .category {
  margin-bottom: 20px;
}

#category-side .backnumber .year {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}

#category-side .backnumber .year .icon {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  margin-top: -2px;
}

#category-side .backnumber .year .icon span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3C3C3C;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#category-side .backnumber .year.open span {
  background-color: #3C3C3C;
}

#category-side .backnumber .year.open span:nth-of-type(2) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#category-side .backnumber .month {
  display: none;
}

@media screen and (max-width: 889px) {
  #category-side .backnumber section {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1200px) {
  #category-side {
    width: max-content;
  }
}

#contents-category .post h1, #contents-category .post h2, #contents-category .post h3, #contents-category .post h4, #contents-category .post h5, #contents-category .post h6 {
  margin-bottom: 15px;
}

#contents-category .post h1 {
  font-size: 26px;
}

#contents-category .post h2 {
  font-size: 24px;
}

#contents-category .post h3 {
  font-size: 22px;
}

#contents-category .post h4 {
  font-size: 20px;
}

#contents-category .post h5 {
  font-size: 18px;
}

#contents-category .post h6 {
  font-size: 16px;
}

#contents-category .post p, #contents-category .post ul, #contents-category .post ol {
  margin-bottom: 10px;
}


.ttl-type03{
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ddd;
  transform: rotate(0.05deg);
}

.category-name{
  margin-bottom: 20px;
}

/* ==================
	col-2
=================== */

.col-2{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-2 > div {
  width: calc((100% - 20px) / 2);
}

.col-2.reverse{
  flex-direction: row-reverse;
}

.col-2-btn{
  display: flex;
  gap: 10px;
}


@media screen and (max-width: 768px) {

  .col-2{
    flex-direction:column;
    gap:10px;
  }

  .col-2-btn{
    flex-direction: column;
    gap: 10px 0;
  }

  .col-2.reverse{
    flex-direction:column;
  }
  
  .col-2 > div{
    width: 100%;
  }

  
}

/* ==================
	col-3
=================== */

.col-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-3 > div {
  width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 768px) {
  .col-3 {
    gap: 10px;
  }

  .col-3 > div {
    width: calc((100% - 10px) / 2);
  }
}


/* ==================
	col-4
=================== */

.col-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-4 > div {
  width: calc((100% - 60px) / 4);
}

@media screen and (max-width: 768px) {

.col-4 {
  gap: 15px;
}

.col-4 > div {
    width: calc((100% - 15px) / 2);
  }
}


/* ==================
	col-box
=================== */

.col-box {
  background: #fff;
  border-radius: 30px;
  padding: 100px;
  display: flex;
  gap: 100px;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.col-aside {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.col-main {
  width: 80%;
}


@media screen and (max-width: 1024px) {

  .col-box {
  padding: 60px 20px;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.col-aside {
  width: 100%;
  gap: 0px;
}
  
}


/* ==================

col-2__layout

=================== */

.col-2__layout01 h2 span{
  margin-bottom: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.col-2__layout01 h2{
  text-align: left;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {

  .col-2__layout01 h2{
    margin-bottom: 10px;
  }
}


/* ==================

	txt-area

=================== */

.txt-area{
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .txt-area{
    margin-bottom: 40px;
  }
}


/* ==================

	btn

=================== */


.btn-wrap{
  margin-top: 20px;
}


/* btn-01 */

.btn-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #E75F2A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: 0.15s ease-out;
  min-width: 160px;
  width: 180px;
  height: 50px;
}

.btn-01:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #FFF;
}

.btn-01:hover {
  color: #fff;
}

#recruit .btn-01{
  width: 220px;
}

@media screen and (max-width: 750px) {
  .btn-01 {
  font-size: 15px;
  width: 100%;
  padding: 20px;
}
#recruit .btn-01{
  width: 80%;
}

}




/* ==================

  contact

=================== */


/* =======================================

	contact

======================================= */

#recruit-contact .section-ttl h1{
  text-align: center;
}

#recruit-contact.section{
  padding: 100px 8%;
  padding-bottom: 250px;
}

#recruit-contact .section__contents{
  max-width: 800px;
  margin: 0 auto;
}

#recruit-contact ul li{
  margin-bottom: 10px;
}

.box-contact {
  margin-bottom: 60px;
  text-align: center;
  margin-top: 20px;
  border-radius: 20px;
  border: 3px solid #E75F2A;
  text-align: center;
  font-size: 18px;
  overflow: hidden; 
}

  .box-contact p {
    padding: 10px 0; 
  }

  .box-contact .name {
    border-bottom: 1px dotted #E75F2A; 
  }

  .box-contact .tel {
    padding-bottom: 0;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2; 
  }

  .policy h2{
    margin-bottom: 10px;
  }

  @media screen and (max-width: 1024px) {

  #recruit-contact.section{
    padding: 60px 20px;
    padding-bottom: 140px;
  }

	.box-contact {
  margin-top: 0;
  margin-bottom: 40px;
  }

	.box-contact p{
    text-align: center!important;
  }

  .box-contact .tel {
    font-size: 25px;
  }

  #recruit-contact ul li{
    font-size: 14px;
  }

}

.contact-form-wrap{
  margin: 60px 0;
}

  .cf7__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .cf7__list dt:nth-of-type(n + 2),
  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 30px;
  }
  
  .cf7__list dt {
    width: 35%;
  }
  
  .cf7__list dd {
    width: 65%;
  }
  
  /* 必須・任意 */
  .cf7__required,
  .cf7__optional {
    margin-right: 15px;
    padding: 6px 14px;
    color: #fff;
    font-size: 12px;
    vertical-align: 1px;
  }
  
  .cf7__required {
    background: #E75F2A;
  }
  
  .cf7__optional {
    background: #878D8E;
  }
  
  /* input・textarea */
  .cf7__list dd input[type="text"],
  .cf7__list dd input[type="tel"],
  .cf7__list dd input[type="email"],
  .cf7__list dd textarea {
    width: 100%;
    padding: 15px 20px;
    background: #FFF;
  }

    /* input・textarea */
    .cf7__list dd input[type="date"]{
      width: max-content;
      padding: 15px 20px;
      background: #F4F4F4;
    }
  
  /* ドロップダウンメニュー */
  .cf7__select {
    position: relative;
    color:#3C3C3C;
  }
  
  .cf7__select:before {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 10;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid #3C3C3C;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    pointer-events: none;
    content: '';
  }
  
  .cf7__select select {
    width: 100%;
    padding: 19px 20px;
    background: #F4F4F4;
    color:#3C3C3C;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
  }
  
  /* チェックボックス・ラジオボタン */
  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    display: block;
  }
  
  /* 縦並び（チェックボックス・ラジオボタン） */
  .cf7__list dd .wpcf7-list-item {
    display: block;
    margin: 0;
  }
  
  .cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
    margin-top: 18px;
  }
  
  /* マウスカーソル（チェックボックス・ラジオボタン） */
  .cf7__list dd .wpcf7-list-item label {
    cursor: pointer;
  }
  
  /* チェックボックス・ラジオボタン */
  input[type="checkbox"],
  input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid #bcbcbc;
    vertical-align: -3px;
    cursor: pointer;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
  }
  
  /* チェックボックス */
  input[type="checkbox"]:checked {
    border: 1px solid #3C3C3C;
    background: #3C3C3C;
  }
  
  input[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
  }
  
  /* ラジオボタン */
  input[type="radio"] {
    border-radius: 50%;
  }
  
  input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3C3C3C;
    content: '';
  }
  
  /* プレースホルダー */
  /* Google Chrome / Safari / Mozilla Firefox / Opera */
  .cf7__list dd input[type="text"]::placeholder,
  .cf7__list dd input[type="tel"]::placeholder,
  .cf7__list dd input[type="email"]::placeholder,
  .cf7__list dd textarea::placeholder {
    color: #a5a5a5;
  }
  
  /* Microsoft Edge */
  .cf7__list dd input[type="text"]::-ms-input-placeholder,
  .cf7__list dd input[type="tel"]::-ms-input-placeholder,
  .cf7__list dd input[type="email"]::-ms-input-placeholder,
  .cf7__list dd textarea::-ms-input-placeholder {
    color: #a5a5a5;
  }
  
  /* Internet Explorer */
  .cf7__list dd input[type="text"]:-ms-input-placeholder,
  .cf7__list dd input[type="tel"]:-ms-input-placeholder,
  .cf7__list dd input[type="email"]:-ms-input-placeholder,
  .cf7__list dd textarea:-ms-input-placeholder {
    color: #a5a5a5;
  }
  
  /* 送信ボタン */
  .cf7__button {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  
  input[type="submit"] {
    width: 260px;
    height: 60px;
    background: #E75F2A;
    color: #fff;
    transition: opacity .6s;
  }
  
  input[type="submit"]:hover {
    opacity: .6;
  }

  
  .wpcf7-response-output{
    text-align: center;
    padding: 20px 0;
    color: #E75F2A;
    font-weight: bold;
    text-decoration: underline;
  }

  /* ajax-loader */
  .wpcf7-spinner {
    vertical-align: middle;
  }
  
  @media screen and (max-width: 767px) {
  
    .cf7__list dt {
      width: 100%;
      margin-bottom: 15px;
      padding-top: 0;
    }
  
    .cf7__list dd {
      width: 100%;
    }
  
    .cf7__list dd:nth-of-type(n + 2) {
      margin-top: 0;
    }
  
    .cf7__list dd .wpcf7-checkbox,
    .cf7__list dd .wpcf7-radio {
      padding: 15px 0 0;
    }
  
    /* 送信ボタン */
    input[type="submit"] {
      width: 100%;
    }

  /* 送信ボタン */
  .cf7__button {
    display: block;
    margin: 0 auto;
  }
  
  }

  .policy-txt p{
    margin-top: 10px;
    text-align: center;
    font-size: 12px!important;
  }

  .grecaptcha-badge { visibility: hidden; }


/* =======================================

	header

======================================= */

/* header */
.site-header{
  position: relative; 
}

.header-item{
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 1;
}

.header-logo img{
  width: 250px;
}

@media screen and (max-width: 768px) {

.header-item{
  position: relative;
  padding: 15px 10px;
  left: 0;
  top: 0;
}

.header-logo img{
  width: 200px;
}

}


/* =======================================

	footer

======================================= */

#page_top {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  background: #FACB3B;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

#page_top.show {
  opacity: 1;
  visibility: visible;
}

#page_top a {
  display: block;
  width: 100%;
  height: 100%;
}

#page_top a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  color: #fff;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  #page_top {
    bottom: 20px; /* スマホもここに表示 */
    width: 50px;
    height: 50px;
  }
}


.site-footer {
  position: relative;
  background: #51595C;
  padding: 80px 0 20px;
}

.footer-inner {
  margin: -220px auto auto auto;
  position: relative;
  z-index: 2;
}

.access-wrap {
  max-width: 1000px;
  height: 500px;
  margin: 0 auto 40px auto;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
}

@media screen and (min-width: 1921px) {
 .access-wrap {
  width: 1200px;
}
}

@media screen and (max-width: 1024px) {

  .site-footer{
    padding: 40px 20px;
  }

  .footer-inner{
    margin: 0px auto 0 auto;
  }

  .access-wrap {
  max-width: 100%;
  height: auto;
  margin: -150px auto 40px auto;
  }


}

.access-card {
  display: flex;
  width: 100%;
  height: 100%;
}

.access-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}


.access-info p{
  line-height: 1.6;
}

.access-map {
  width: 50%;
  height: 100%;
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .access-card {
  flex-direction: column;
}

.access-info{
  width: 100%;
  padding: 40px 20px;
}

.access-info a{
  margin: 0 auto;
}

.access-map {
  width: 100%;
}

}

.footer-logo img{
  width: 300px;
  margin-bottom: 20px;
}

.access-address {
  margin-bottom: 10px;
}

.access-telfax {
  margin-bottom: 5px;
}

.access-telfax p{
  font-size: 20px;
  font-weight: bold;
}

.access-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 18px;
  font-weight: bold;
}

.access-row dt {
  min-width: max-content;
}

.access-row dt p{
  line-height: 1;
}

.access-note {
  font-size: 12px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
.access-address {
  margin-bottom: 5px;
}

}


.footer-nav {
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 500;
}

.footer-nav ul li a:hover{
  color: #E75F2A;
}


@media screen and (max-width: 1024px) {
  .footer-logo img{
    width: 250px;
  }

.footer-nav {
  max-width: 100%;
  margin: 0 auto 40px auto;
}

.footer-nav ul {
  padding: 0 20px;
  gap: 15px 20px;
}
}

.footer-nav a {
  font-size: 13px;
  color: #f7f1eb;
  text-decoration: none;
  letter-spacing: 0.08em;
}


.footer-copy {
  text-align: center;
  font-size: 11px;
  color: #d5cfca;
}

@media screen and (max-width: 1920px) {
  .footer-nav a {
  font-size: 16px;
}

}

.footer-float-link{
  position: absolute;
  right: 40px;
  bottom: 0px;
  z-index: 2;
}

.footer-float-link a{
  width: 180px;
  display: inline-block;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  border: solid 2px #FFF;
  border-bottom: none;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.2;
}

.footer-float-link a span{
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: normal;
}

.footer-float-link a:hover{
  background-color: #EAF7FF;
  border: #EAF7FF;
  color: #FF90BB;
}

@media screen and (max-width: 768px) {

.footer-copy {
  margin-bottom: 20px;
}

.footer-float-link{
  position: relative;
  right: 0;
  text-align: center;
}

.footer-float-link a{
  border-radius: 10px;
  border-bottom: solid 2px #FFF;
}

}


/* =======================================

	section

======================================= */

.top-inner{
  position: relative;
}

.inner {
  margin: 120px 0;
}

.section {
  padding: 100px 8%;
  box-sizing: border-box;
}

.section__contents{
  padding-top: 60px;
}

.container {
  padding: 0 10%;
}


.container-sm{
  max-width: 1000px;
  margin: 0 auto;
}

.container-item__ttl{
  margin-bottom: 20px;
  white-space: nowrap;
}

.container-item__ttl .sub-ttl{
  font-size: 14px;
  font-weight: bold;
  line-height: 2.4rem;
}

.sub-ttl{
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(0.05deg);
}

@media screen and (max-width: 1440px) {
  .section {
  padding-top: 100px;
  padding-bottom: 100px;
  }
}

@media screen and (max-width: 1280px) {
  .section__contents{
  padding-top: 40px;
} 
}

@media screen and (max-width: 768px) {

  .top-inner{
    margin-top: 0px;
  }

  .inner {
    margin: 60px 0;
  }
  
  .section {
    padding: 60px 20px;
  }

  .container {
    padding: 0px;
  }

  .sub-ttl img{
    width: 80px;
  }

  .container-item__ttl{
    margin-bottom: 10px;
  }

  .container-item__ttl .sub-ttl{
    font-size: 12px;
    line-height: 2rem;
  }

  .container-sm{
    width: 100%;
  }
}

/* =======================================

	mt

======================================= */

.mt-xl {
  margin-top: 100px;
}

.mt-lg {
  margin-top: 80px;
}

.mt-md {
  margin-top: 60px;
}

.mt-sm {
  margin-top: 40px;
}

.mt-xs {
  margin-top: 20px;
}

@media screen and (max-width: 750px) {

  .mt-xl {
    margin-top: 80px;
  }
  
  .mt-lg {
    margin-top: 60px;
  }
  
  .mt-md {
    margin-top: 40px;
  }
  
  .mt-sm {
    margin-top: 20px;
  }
  
  .mt-xs {
    margin-top: 10px;
  }
  
}

/* =======================================

	mb

======================================= */

.mb-xl {
  margin-bottom: 100px;
}

.mb-lg {
  margin-bottom: 80px;
}

.mb-md {
  margin-bottom: 60px;
}

.mb-sm {
  margin-bottom: 40px;
}

.mb-xs {
  margin-bottom: 20px;
}

/* =======================================

	contents-page

======================================= */

.page-inner{
  padding: 120px 0 200px 0;
}

.page-nav{
  padding: 40px 0;
  text-align: center;
  background-color: #E6F2E4;
}

.page-nav__list{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-nav__list p{
  font-size: 15px;
}

.page-nav__item{
  display: flex;
  gap: 0 5px;
  padding: 10px 20px;
  border-radius: 50px;
  align-items: center;
  border: solid 1px #FFF;
  background-color: #FFF;
}

@media screen and (max-width: 768px) {

  .page-nav{
    padding: 20px;
  }
  
  .page-nav__list{
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .page-nav__list a{
    font-size: 12px;
  }

  .page-nav__item{
    padding: 10px;
  }

  .page-inner{
    padding: 60px 0px;
  }

}

.contents{
  max-width: 1280px;
  margin: 0 auto;
}

.contents__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}

.contents__ttl .jp {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {

  .contents{
    max-width: 100%;
    margin: 0 auto;
  }
  
  .contents__ttl{
    margin-bottom: 0px;
    text-align: center;
    gap: 0px;
  }
}



  /* =======================================

	bg

======================================= */


.bg-red {
  background: #E75F2A;
}

.bg-yellow {
  background: #FACB3B;
}

.bg-blue {
  background: #1F6FB5;
}

.bg-green {
  background: #AAD72A;
}

.bg-gray{
  background-color: #F6F6F6;
}

.bg-creem{
  background-color: #FAF8F4;
}

.bg-white{
  background-color: #FFF;
}


/* =======================================

	slideshow

======================================= */


.slideshow-container div img {
  padding: 0 10px;
  object-fit: cover;
  height: 300px;
  width: 100%;
  border-radius: 40px;
}

.slideshow-container .even {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {

    #slideshow section{
      margin-bottom: 20px;
    }
    
    .slideshow-container div img {
      border-radius: 30px;
      width: 100%;
      height: 150px;
    }
}

/* =======================================

	table

======================================= */

.table-wrap {
  margin-bottom: 40px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.table-wrap h4{
  margin-bottom: 10px;
}

/* =======================================
	sitemap
======================================= */

.page-sitemap{
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap {
  font-size: 20px; }
.sitemap li {
  margin-bottom: 20px;
  border-radius: 10px;
  border: 3px solid #A8BCEF; 
}
.sitemap li a {
display: block;
width: 100%;
padding: 10px 20px; }
.sitemap li a:hover {
  color: #A8BCEF; 
}
.sitemap li i {
color: #A8BCEF;
padding-right: 10px; 
}
.sitemap li ul {
  margin: 0 0 10px;
  border-top: 1px dotted #3C3C3C; 
  }
.sitemap li li {
  margin-bottom: 0;
  border: none;
  font-size: 16px; 
  }


.hr{
  display: block;
  border: solid 1px #EEE;
  width: 100%;
  margin: 20px 0;
}


/* =======================================
	sp menu
======================================= */

  .btn_menu {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #E86A2F;
  color: #FAF8F4;
  border: none;
  z-index: 100;
}

.btn_menu p {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 1;
  color: #FAF8F4;
  font-family: "Montserrat";
}

.btn_menu span {
  position: static;
  display: block;
  width: 50px;
  height: 4px;
  background: #FAF8F4;
  transition: .3s;
}

.btn_menu.open span:nth-of-type(1),
.btn_menu.open span:nth-of-type(3) {
  opacity: 1;
}

.btn_menu.open span:nth-of-type(2) {
  opacity: 0;
}

.btn_menu.open p {
  display: none;
}

.btn_menu.open span:nth-of-type(1) {
  color: #FAF8F4;
  transform: translateY(10px) rotate(45deg);
}

.btn_menu.open span:nth-of-type(2) {
  transition: none;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transform: none;
}

.btn_menu.open span:nth-of-type(3) {
  color: #FAF8F4;
  transform: translateY(-13px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .btn_menu {
  top: 10px;
  right: 8px;
  width: 60px;
  height: 60px;
  gap: 6px;
}

.btn_menu p {
  font-size: 12px;
}

.btn_menu span {
  width: 35px;
  height: 2px;
}

.btn_menu.open span:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}

.btn_menu.open span:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 20%;
  height: 100vh;
  background: #E75F2A;
  transition: .4s;
  z-index: 10;
  padding-top: 150px;
}

@media screen and (max-width: 1440px) {
  .nav {
  padding-top: 150px;
}


}

@media screen and (max-width: 768px) {
  .nav{
    width: 100%;
    padding: 100px 20px;
  }
}

.nav.open {
  right: 0;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.nav li a {
  display: block;
  padding: 15px 0;
  font-weight: 500;
  font-size: 18px;
  color: #FAF8F4;
}

.nav li a:hover{
  color: #3C3C3C;
}

.nav .nav__toggle {
  width: 100%;
  display: flex;
  align-items:baseline;
  justify-content:flex-start;
  background: none;
  border: 0;
  padding: 10px 0;
  font: inherit;
  gap: 0 20px;
  font-weight: bold;
  color: #3C3C3C;
  font-size: 14px;
}
.nav .nav__toggle::after {
  content: "+";
  font-weight: 700;
  line-height: 1;
}
.nav .nav__toggle[aria-expanded="true"]::after {
  content: "−";
}
.nav .sub[hidden] {
  display: none;
}
.nav .sub {
  padding-left: 16px;
}
.nav .sub li a {
  font-size: 14px;
  padding: 10px 0;
  font-weight: normal;
}
  
@media screen and (max-width: 768px) {
  .nav li a {
  padding: 10px 0;
  font-size: 16px;
}

}

