@charset "UTF-8";
@font-face {
  font-family: "KaiseiDecol";
  src: url("../fonts/KaiseiDecol-Bold.woff2") format("woff2"), url("../fonts/KaiseiDecol-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "KaiseiDecol";
  src: url("../fonts/KaiseiDecol-Medium.woff2") format("woff2"), url("../fonts/KaiseiDecol-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "KaiseiDecol";
  src: url("../fonts/KaiseiDecol-Regular.woff2") format("woff2"), url("../fonts/KaiseiDecol-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "ShipporiMincho";
  src: url("../fonts/ShipporiMincho-ExtraBold.woff2") format("woff2"), url("../fonts/ShipporiMincho-ExtraBold.woff") format("woff");
  font-weight: 800;
}
@font-face {
  font-family: "ShipporiMincho";
  src: url("../fonts/ShipporiMincho-Bold.woff2") format("woff2"), url("../fonts/ShipporiMincho-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "ShipporiMincho";
  src: url("../fonts/ShipporiMincho-SemiBold.woff2") format("woff2"), url("../fonts/ShipporiMincho-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "ShipporiMincho";
  src: url("../fonts/ShipporiMincho-Medium.woff2") format("woff2"), url("../fonts/ShipporiMincho-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "ShipporiMincho";
  src: url("../fonts/ShipporiMincho-Regular.woff2") format("woff2"), url("../fonts/ShipporiMincho-Regular.woff") format("woff");
  font-weight: 400;
}
/* 色などの変数定義 */
:root {
  --text-color: #555;
}

/* 全要素リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

/* ルートフォントサイズ調整（1rem = 10px） */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* 基本フォント設定（body & フォーム要素） */
body,
button,
input,
textarea,
select {
  font-family: "ShipporiMincho", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-color);
  -webkit-text-size-adjust: 100%;
  /* iOS文字拡大防止 */
  -webkit-font-smoothing: antialiased;
}

/* リンク初期化 & ホバー効果 */
a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* リスト系リセット */
ul,
ol {
  list-style: none;
}

/* フォームの余計な装飾をリセット */
button,
input,
textarea,
select {
  background: none;
  border: none;
  padding: 0;
}

/* ボタン強化 */
button,
input[type=submit] {
  cursor: pointer;
}

button {
  appearance: none;
  -webkit-appearance: none;
}

/* レスポンシブ対策 */
/* 画像・メディアのレスポンシブ対応 */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テキストはみ出し対策 */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
}

/* 横スクロール防止 */
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scaledown {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes onsen {
  0% {
    opacity: 0;
    fill: transparent;
    stroke-width: 1;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 25%;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    fill: transparent;
    stroke-width: 1;
  }
  99% {
    opacity: 1;
    stroke-width: 0;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: -25%;
    stroke-dasharray: 25% 0;
    stroke-width: 0;
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.cloud {
  animation-name: floatY;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

#page {
  overflow: hidden;
}

.site-inner {
  background: #f0efe7 url(../../assets/images/repeat.svg) repeat scroll left top;
}

#masthead {
  /*position: fixed;*/
  width: 100%;
  z-index: 12;
  top: -100px;
  transition: all 0.3s ease;
  margin: 0 0 22px;
}
#masthead .site-header-main .site-branding {
  display: flex;
  justify-content: space-between;
  padding: 13px 37px 0;
  align-items: center;
}
#masthead .site-header-main .site-branding .site-title a {
  display: flex;
  align-items: center;
  gap: 23px;
  text-decoration: none;
  /*animation: scaledown 4s 1 alternate;*/
  will-change: transform;
  width: max-content;
  /*> svg.logo {
      opacity: 0;
      transition: all 0.4s ease-in-out;
      transform-origin: center center;
      stroke: #de6262;
      fill: #de6262;
      animation: onsen 3s 1 1s alternate;
      animation-fill-mode: forwards;
  }
  > svg.text {
      opacity: 0;
      transition: all 0.4s ease-in-out;
      transform-origin: center center;
      stroke: #333;
      animation: onsen 3.3s 1 1s alternate;
      animation-fill-mode: forwards;
      text {
          font-size: 5.1rem;
          font-weight: 400;
          font-family: "KaiseiDecol", sans-serif;
      }
  }*/
}
#masthead .site-header-main .site-branding .site-title a span {
  font-size: 5.1rem;
  font-weight: 400;
  font-family: "KaiseiDecol", sans-serif;
}
#masthead .site-header-main .site-branding .site-title a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
#masthead .site-header-main .site-branding nav {
  position: relative;
}
#masthead .site-header-main .site-branding nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
  /* gap: clamp(1rem, 4vw, 5.5rem); */
  margin: 0 228px 0 0;
}
#masthead .site-header-main .site-branding nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
#masthead .site-header-main .site-branding nav ul li a:hover {
  text-decoration: none;
}
#masthead .site-header-main .site-branding nav ul li a:hover span::after {
  width: 100%;
}
#masthead .site-header-main .site-branding nav ul li a span {
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.8rem;
  display: block;
}
#masthead .site-header-main .site-branding nav ul li a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
#masthead .site-header-main .site-branding nav .gtranslate_wrapper {
  position: absolute;
  top: 0;
  cursor: default;
  right: 0;
  width: 173px;
}

.site-content {
  /*padding: 102px 0 0;
  background: #f0efe7 url(../../assets/images/bg_ptn.svg) repeat scroll left
      top;*/
}

div.yuge {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
div.yuge img {
  position: absolute;
}

@keyframes az {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.front-page_content > div.top {
  /*padding: 102px 0 0;
  background: #f0efe7 url(../../assets/images/repeat.svg) repeat scroll
      left top;*/
}
.front-page_content > div.top .key {
  position: relative;
  margin: 0 auto;
}
.front-page_content > div.top .key > div.yuge {
  /*> div {
      position: absolute;
  }
  > div:nth-of-type(1) {
      background: transparent url(../../assets/images/yuge1.svg)
          no-repeat scroll left top / cover;
      width: 199px;
      height: 169px;
      left: 33%;
  }
  > div:nth-of-type(2) {
      background: transparent url(../../assets/images/yuge2.svg)
          no-repeat scroll left top / cover;
      width: 336px;
      height: 268px;
      right: 2%;
  }
  > div:nth-of-type(3) {
      background: transparent url(../../assets/images/yuge3.svg)
          no-repeat scroll left top / cover;
      width: 263px;
      height: 244px;
      right: 9%;
      bottom: 14%;
  }*/
}
.front-page_content > div.top .key > div.yuge img:nth-of-type(1) {
  width: 12.8%;
  left: 33%;
}
.front-page_content > div.top .key > div.yuge img:nth-of-type(2) {
  width: 21.6%;
  right: 2%;
}
.front-page_content > div.top .key > div.yuge img:nth-of-type(3) {
  width: 16.95%;
  right: 9%;
  bottom: -10%;
}
.front-page_content > div.top .key > .slider {
  /* mask-image: url(../../assets/images/slider_mask.svg); */
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../../assets/images/slider_mask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  width: 110%;
  position: relative;
  right: 5%;
}
.front-page_content > div.top .key > .slider .slick-track .slick-slide img {
  width: 100%;
}
.front-page_content > div.top .key > .slider .slick-track .slick-slide.kz {
  animation: az 10s linear 0s normal both;
}
.front-page_content > div.top > div.text {
  max-width: 1520px;
  margin: -13.5% 0 clamp(180px, 15vw, 231px) 0;
  padding: 0 21px;
  position: relative;
  left: 4%;
}
.front-page_content > div.top > div.text h2 {
  font-weight: 600;
  font-size: clamp(2.8rem, 3.8vw, 5.6rem);
  line-height: 1.7857142857;
  margin: 0 0 clamp(20px, 5vw, 66px);
  color: #de6262;
  text-shadow: 2px 2px 0px #ffffff;
}
.front-page_content > div.top > div.text p {
  font-weight: 500;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  line-height: 3;
}
.front-page_content > div.top section.about {
  margin: 0 auto clamp(150px, 15vw, 208px);
  display: flex;
  justify-content: space-between;
  padding: 0 15.625% 0 8.3333333333%;
  position: relative;
}
.front-page_content > div.top section.about > h2 {
  /*width: 116px;*/
  width: 11.9452054795%;
  max-width: 110px;
}
.front-page_content > div.top section.about > div.wrap {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  width: 79.7671232877%;
  padding: 49px 3.1% 41px;
  margin: 8% 0 0 0;
  position: relative;
}
.front-page_content > div.top section.about > div.wrap > div.img {
  background: transparent url(../../assets/images/yuge5.svg) no-repeat scroll left top;
  background-origin: center;
}
.front-page_content > div.top section.about > div.wrap > img {
  position: absolute;
}
.front-page_content > div.top section.about > div.wrap > img:nth-of-type(1) {
  width: 18.8%;
  left: -6.7708333333vw;
  top: -5.7291666667vw;
}
.front-page_content > div.top section.about > div.wrap > img:nth-of-type(2) {
  width: 25.8%;
  right: -6.4583333333vw;
  bottom: -6.875vw;
}
.front-page_content > div.top section.about > div.wrap > h3 {
  color: #de6262;
  font-size: clamp(2rem, 1.72vw, 2.5rem);
  margin: 0 0 35px;
  font-weight: 500;
  word-break: keep-all;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper {
  display: flex;
  gap: 30px 0;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 59px;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div {
  width: 48%;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(odd) {
  width: 51%;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(even) {
  width: 45%;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(3) > div {
  margin: 0 0 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(3) > div > div {
  display: flex;
  justify-content: space-between;
  width: 70%;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(3) > div > div p {
  font-size: clamp(1.8rem, 1.4vw, 2.4rem);
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(3) > p {
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  /*text-wrap: balance;*/
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(4) > p {
  margin: 0 0 24px;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(4) > div {
  display: flex;
  gap: 36px;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(4) > div img {
  width: 98px;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div > h3 {
  color: #de6262;
  font-size: clamp(2.5rem, 2.3vw, 3.5rem);
  margin: 0 0 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.front-page_content > div.top section.about > div.wrap > div.wrapper > div > p {
  font-size: clamp(1.8rem, 1.2vw, 2rem);
  font-weight: 500;
}
.front-page_content > div.top section.about > div.wrap > p {
  font-size: 1.8rem;
  display: table;
  margin: 0 auto;
}
.front-page_content > div.top section.news {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 15.625% 208px 8.3333333333%;
}
.front-page_content > div.top section.news > h2 {
  /*width: 116px;*/
  width: 11.9452054795%;
  max-width: 110px;
}
.front-page_content > div.top section.news > div {
  width: 79.7671232877%;
  margin: 8% 0 0 0;
}
.front-page_content > div.top section.news > div > div {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 49px 88px 41px;
  margin: 0 0 45px;
  position: relative;
}
.front-page_content > div.top section.news > div > div img {
  width: 26%;
  left: -5.2083333333vw;
  bottom: -10.9375vw;
  position: absolute;
}
.front-page_content > div.top section.news > div > div > h3 {
  color: #de6262;
  font-size: 2.5rem;
  margin: 0 0 27px;
  font-weight: 500;
}
.front-page_content > div.top section.news > div > div ul {
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  z-index: 11;
}
.front-page_content > div.top section.news > div > div ul li a {
  display: flex;
  gap: 25px;
  text-decoration: none;
}
.front-page_content > div.top section.news > div > div ul li a:hover h2::after {
  width: 100%;
}
.front-page_content > div.top section.news > div > div ul li a p {
  font-size: 2rem;
  font-weight: 500;
  color: #969696;
}
.front-page_content > div.top section.news > div > div ul li a h2 {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.front-page_content > div.top section.news > div > div ul li a h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #de6262;
  transition: width 0.3s ease;
}
.front-page_content > div.top section.news > div > a {
  display: table;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2rem;
  padding: 9px 23px;
  background-color: #de6262;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #de6262;
}
.front-page_content > div.top section.news > div > a:hover {
  color: #de6262;
  background-color: #ffffff;
}
.front-page_content section.para {
  max-height: 600px;
  position: relative;
  height: 52vw;
  overflow: hidden;
}
.front-page_content section.para img {
  width: 100%;
}
.front-page_content section.guide2 {
  background: #f7ede0 url(../../assets/images/repeat.svg) repeat scroll left top;
  padding: 15% 0 14%;
}
.front-page_content section.guide2 > div.wrap > div.top {
  display: grid;
  grid-template-columns: 24.3229166667% 1fr 21.8645833333%;
  margin: 0 0 clamp(150px, 15vw, 338px);
  position: relative;
}
.front-page_content section.guide2 > div.wrap > div.top > h2.headline {
  grid-column: span 4;
  align-self: flex-end;
  margin: 0 27% 0 auto;
  grid-row: 1/3;
  width: 35.9%;
  max-width: 110px;
}
.front-page_content section.guide2 > div.wrap > div.top > h3 {
  color: #de6262;
  font-size: 2rem;
  margin: 0 0 84px;
  text-align: center;
  font-weight: 500;
  grid-column: 2;
  grid-row: 1;
}
.front-page_content section.guide2 > div.wrap > div.top > p {
  color: #696969;
  font-size: clamp(1.8rem, 1.5vw, 2.5rem);
  line-height: 2.4;
  margin: 0 auto 157px;
  display: table;
  word-break: keep-all;
  grid-column: 2;
  grid-row: 2;
}
.front-page_content section.guide2 > div.wrap > div.top > h2.map {
  color: #696969;
  font-size: 3.5rem;
  margin: 0 0 62px;
  text-align: center;
  font-family: "KaiseiDecol";
  font-weight: 400;
  grid-column: 2;
}
.front-page_content section.guide2 > div.wrap > div.top > img.map {
  grid-column: 2;
  width: 82.3529411765%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.front-page_content section.guide2 > div.wrap > div.top > img.img1 {
  grid-column: 1;
  grid-row: 2/5;
  margin: 12% 0 0 auto;
  position: relative;
  left: -25px;
  width: 110%;
  max-width: 110%;
}
.front-page_content section.guide2 > div.wrap > div.top > img.img2 {
  grid-column: 3;
  align-self: end;
  position: relative;
  bottom: -75px;
  width: 115%;
  max-width: 115%;
  right: 3%;
}
.front-page_content section.guide2 > div.wrap > div.top > img.cloud1 {
  position: absolute;
  width: 17%;
  left: 11.9791666667vw;
  top: -22.3958333333vw;
}
.front-page_content section.guide2 > div.wrap > div.top > img.cloud2 {
  position: absolute;
  width: 17%;
  left: 8%;
  top: 87%;
}
.front-page_content section.guide2 > div.wrap > div.middle {
  gap: 60px;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin: 0 auto 169px;
  max-width: 1515px;
  padding: 0 21px;
}
.front-page_content section.guide2 > div.wrap > div.middle > div {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  align-items: center;
}
.front-page_content section.guide2 > div.wrap > div.middle > div img {
  margin: 0 0 13px;
}
.front-page_content section.guide2 > div.wrap > div.middle > div p {
  font-size: 2.4rem;
  text-align: center;
}
.front-page_content section.guide2 > div.wrap > div.bottom {
  max-width: 1265px;
  margin: 0 auto;
  padding: 0 21px;
  position: relative;
}
.front-page_content section.guide2 > div.wrap > div.bottom > img.cloud3 {
  position: absolute;
  width: 14%;
  right: 1%;
  top: 27%;
}
.front-page_content section.guide2 > div.wrap > div.bottom > img.cloud4 {
  position: absolute;
  width: 13%;
  left: 0%;
  bottom: -32%;
}
.front-page_content section.guide2 > div.wrap > div.bottom > h3 {
  color: #de6262;
  font-size: 3.5rem;
  font-family: "KaiseiDecol";
  font-weight: 500;
  margin: 0 0 13px;
}
.front-page_content section.guide2 > div.wrap > div.bottom > h3.m {
  margin: 0 0 21px;
}
.front-page_content section.guide2 > div.wrap > div.bottom > p {
  font-size: 2rem;
  margin: 0 0 60px;
  position: relative;
  z-index: 1;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div {
  display: flex;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div {
  display: flex;
  align-items: center;
  gap: 55px;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div:first-of-type {
  width: 43%;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div:last-of-type {
  width: 57%;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div > div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 30%;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div > div p {
  font-size: 2rem;
  font-weight: bold;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div > p {
  font-size: 2rem;
  width: 70%;
}
.front-page_content section.guide2 > div.wrap > div.bottom > div > div > p > span {
  font-size: 1.6rem;
}
.front-page_content section.guide {
  background: #f7ede0 url(../../assets/images/repeat.svg) repeat scroll left top;
  padding: 15% 0 14%;
  position: relative;
}
.front-page_content section.guide > img {
  position: absolute;
}
.front-page_content section.guide > img.cloud1 {
  width: 17%;
  left: 11.9791666667vw;
  top: -6.7708333333vw;
}
.front-page_content section.guide > img.cloud2 {
  width: 17%;
  left: 8%;
  top: 33%;
}
.front-page_content section.guide > img.img1 {
  width: 25%;
  left: 0%;
  top: 10.5%;
}
.front-page_content section.guide > img.img2 {
  width: 27%;
  right: -3%;
  top: 30%;
}
.front-page_content section.guide > img.cloud3 {
  width: 14%;
  right: 16%;
  bottom: 13%;
}
.front-page_content section.guide > img.cloud4 {
  width: 10%;
  left: 6%;
  bottom: 1%;
}
.front-page_content section.guide > div.wrap {
  max-width: 1515px;
  margin: 0 auto;
  /*display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;*/
  padding: 0 21px;
}
.front-page_content section.guide > div.wrap > h2 {
  width: 7.9452054795%;
  position: absolute;
  right: 5%;
}
.front-page_content section.guide > div.wrap > div.wrapper {
  position: relative;
  width: 100%;
}
.front-page_content section.guide > div.wrap > div.wrapper > h3 {
  color: #de6262;
  font-size: 2rem;
  margin: 0 0 84px;
  text-align: center;
  font-weight: 500;
}
.front-page_content section.guide > div.wrap > div.wrapper > p {
  color: #696969;
  font-size: clamp(2rem, 1.6vw, 2.5rem);
  line-height: 2.4;
  margin: 0 auto 157px;
  display: table;
  word-break: keep-all;
}
.front-page_content section.guide > div.wrap > div.wrapper > h2 {
  color: #696969;
  font-size: 3.5rem;
  margin: 0 0 62px;
  text-align: center;
  font-family: "KaiseiDecol";
  font-weight: 400;
}
.front-page_content section.guide > div.wrap > div.wrapper > img.map {
  max-width: 700px;
  margin: 0 auto 337px;
}
.front-page_content section.guide > div.wrap > div.wrapper > img.img1 {
  display: none;
}
.front-page_content section.guide > div.wrap > div.wrapper > img.img2 {
  display: none;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.middle {
  gap: 60px;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin: 0 auto 169px;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.middle > div {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  align-items: center;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.middle > div img {
  margin: 0 0 13px;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.middle > div p {
  font-size: 2.4rem;
  text-align: center;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom {
  max-width: 1265px;
  margin: 0 auto;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > h3 {
  color: #de6262;
  font-size: 3.5rem;
  font-family: "KaiseiDecol";
  font-weight: 500;
  margin: 0 0 13px;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > h3.m {
  margin: 0 0 21px;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > p {
  font-size: 2rem;
  margin: 0 0 60px;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > img.cloud3 {
  display: none;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div {
  display: flex;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div {
  display: flex;
  align-items: center;
  gap: 55px;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div:first-of-type {
  width: 43%;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div:last-of-type {
  width: 57%;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div > div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 30%;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div > div p {
  font-size: 2rem;
  font-weight: bold;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div > p {
  font-size: 2rem;
  width: 70%;
}
.front-page_content section.guide > div.wrap > div.wrapper > div.bottom > div > div > p > span {
  font-size: 1.6rem;
}
.front-page_content section.comp {
  background-color: #fff;
}
.front-page_content section.comp > div {
  max-width: 1600px;
  margin: 0 auto;
  gap: 21px;
  justify-content: space-between;
  display: flex;
  padding: 130px 7.8125%;
}
.front-page_content section.comp > div > h2 {
  width: 11.945205%;
  max-width: 110px;
}
.front-page_content section.comp > div > div {
  width: 79.7671232877%;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
}
.front-page_content section.comp > div > div > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 63.4686346863%;
}
.front-page_content section.comp > div > div > div > div {
  display: flex;
}
.front-page_content section.comp > div > div > div > div h3 {
  color: #de6262;
  font-size: 1.8rem;
  font-weight: bold;
  width: 130px;
}
.front-page_content section.comp > div > div > div > div p {
  font-size: 1.8rem;
  width: 100%;
  flex: 1;
}
.front-page_content section.comp > div > div > img {
  width: 36.5313653137%;
}
.front-page_content div.photo-access {
  background: #f0efe7 url(../../assets/images/repeat.svg) repeat scroll left top;
}
.front-page_content div.photo-access section.photo {
  background-color: rgba(240, 239, 231, 0);
  padding: 180px 0 205px;
  position: relative;
  overflow: hidden;
}
.front-page_content div.photo-access section.photo > img {
  position: absolute;
  width: 13%;
  right: 4%;
  top: 15%;
}
.front-page_content div.photo-access section.photo > div.headline {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 21px;
}
.front-page_content div.photo-access section.photo > div.headline > h2 {
  margin: 0 0 30px;
}
.front-page_content div.photo-access section.photo > div.headline > p {
  color: #de6262;
  font-size: 2rem;
  margin: 0 0 131px;
}
.front-page_content div.photo-access section.photo > div.slider .slick-list {
  overflow: visible;
}
.front-page_content div.photo-access section.photo > div.slider div.slick-slide {
  margin: 0 40px;
}
.front-page_content div.photo-access section.photo > div.slider div.slick-slide.slick-center img {
  transform: scale(1.2);
}
.front-page_content div.photo-access section.photo > div.slider div.slick-slide img {
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
}
.front-page_content div.photo-access section.photo > div.slider .slick-arrow {
  width: 86px;
  height: 86px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.front-page_content div.photo-access section.photo > div.slider .slick-prev {
  background: transparent url(../../assets/images/prev.svg) no-repeat scroll left top/86px 86px;
  left: 29%;
}
.front-page_content div.photo-access section.photo > div.slider .slick-next {
  background: transparent url(../../assets/images//next.svg) no-repeat scroll left top/86px 86px;
  right: 29%;
}
.front-page_content div.photo-access section.access {
  background-color: rgba(242, 234, 219, 0.5);
  padding: 91px 100px 91px;
  position: relative;
}
.front-page_content div.photo-access section.access > img {
  position: absolute;
}
.front-page_content div.photo-access section.access > img.cloud1 {
  width: 13%;
  right: 4%;
  bottom: 15%;
}
.front-page_content div.photo-access section.access > img.cloud2 {
  width: 13%;
  left: 4%;
  bottom: -4%;
}
.front-page_content div.photo-access section.access > h2 {
  margin: 0 0 45px;
}
.front-page_content div.photo-access section.access iframe {
  width: 100%;
  height: 41vw;
  max-height: 700px;
  margin: 0 0 104px;
}
.front-page_content div.photo-access section.access div.box {
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  margin: 0 auto 40px;
  padding: 45px 94px 99px;
}
.front-page_content div.photo-access section.access div.box > h2 {
  color: #de6262;
  font-size: 3.5rem;
  font-family: "KaiseiDecol";
  font-weight: 400;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.front-page_content div.photo-access section.access div.box > p {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  margin: 0 0 46px;
  line-height: 1.75;
  font-weight: 500;
}
.front-page_content div.photo-access section.access div.box > p a {
  color: #de6262;
}
.front-page_content div.photo-access section.access div.box > div.img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 45px 0;
}
.front-page_content div.photo-access section.access div.box > div.img img {
  width: 48%;
}
.front-page_content div.photo-access section.access div.box > img {
  width: 48%;
}
.front-page_content div.photo-access section.access div.box > div.detail {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 57px 0 0 0;
}
.front-page_content div.photo-access section.access div.box > div.detail > div {
  display: flex;
  align-items: center;
  gap: 13px;
}
.front-page_content div.photo-access section.access div.box > div.detail > div > div {
  display: flex;
  gap: 13px;
  width: 85px;
  justify-content: flex-end;
}
.front-page_content div.photo-access section.access div.box > div.detail > div > div img {
  width: 36px;
}
.front-page_content div.photo-access section.access div.box > div.detail > div > p {
  font-size: 2rem;
  line-height: 1.25;
  flex: 1;
}

#colophon {
  position: relative;
}
#colophon .pagetop {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  top: -105px;
  right: 34px;
  text-decoration: none;
}
#colophon .pagetop:hover img {
  top: -7px;
}
#colophon .pagetop:hover span::after {
  width: 100%;
}
#colophon .pagetop span {
  position: relative;
  transition: all 0.3s ease;
  font-family: "KaiseiDecol";
}
#colophon .pagetop span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
#colophon .pagetop img {
  transition: all 0.3s ease;
  top: 0;
  position: relative;
}
#colophon .site-info {
  padding: 37px 21px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#colophon .site-info > div.left {
  display: flex;
  align-items: center;
  gap: 68px;
}
#colophon .site-info > div.left > a.site-title:hover {
  text-decoration: none;
}
#colophon .site-info > div.left > a.site-title:hover p::after,
#colophon .site-info > div.left > a.site-title:hover span::after {
  width: 100%;
}
#colophon .site-info > div.left > a.site-title p,
#colophon .site-info > div.left > a.site-title span {
  position: relative;
}
#colophon .site-info > div.left > a.site-title p::after,
#colophon .site-info > div.left > a.site-title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
#colophon .site-info > div.left > a.site-title p {
  font-size: 3.2rem;
  display: table;
}
#colophon .site-info > div.left > a.site-title span {
  font-size: 2rem;
}
#colophon .site-info > div.left > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
#colophon .site-info > div.left > div > p {
  font-size: 2.5rem;
}
#colophon .site-info > div.left > div > a.tel {
  font-size: 3rem;
  display: flex;
  gap: 9px;
  align-items: center;
  position: relative;
}
#colophon .site-info > div.left > div > a.tel:hover {
  text-decoration: none;
}
#colophon .site-info > div.left > div > a.tel:hover::after {
  width: 100%;
}
#colophon .site-info > div.left > div > a.tel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
#colophon .site-info > div.left > div > a.insta {
  font-size: clamp(2rem, 2vw, 2.5rem);
  display: flex;
  gap: 9px;
  align-items: center;
  position: relative;
}
#colophon .site-info > div.left > div > a.insta:hover {
  text-decoration: none;
}
#colophon .site-info > div.left > div > a.insta:hover::after {
  width: 100%;
}
#colophon .site-info > div.left > div > a.insta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
#colophon .site-info > small {
  display: block;
  font-size: clamp(2rem, 2vw, 2.5rem);
}

.page_content {
  /*padding: 102px 0 0;
  background: #f0efe7 url(../../assets/images/repeat.svg) repeat scroll left
      top;*/
}
.news_content div.wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 130px 20.8333333333% 200px 7.8125%;
}
.news_content div.wrap > h1 {
  width: 11.9452054795%;
}
.news_content div.wrap > div.wrapper {
  width: 79.767123%;
  margin: 7% 0 0 0;
}
.news_content div.wrap > div.wrapper > div {
  background-color: rgba(255, 255, 255, 0.49);
  border-radius: 30px;
  padding: 13% 16%;
  margin: 0 0 83px;
}
.news_content div.wrap > div.wrapper > div > h3 {
  color: #de6262;
  font-size: 2.5rem;
  margin: 0 0 27px;
  font-weight: 400;
}
.news_content div.wrap > div.wrapper > div article {
  margin: 0 0 95px;
}
.news_content div.wrap > div.wrapper > div article ul {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.news_content div.wrap > div.wrapper > div article ul li a {
  display: flex;
  gap: 30px;
}
.news_content div.wrap > div.wrapper > div article ul li a:hover {
  text-decoration: none;
}
.news_content div.wrap > div.wrapper > div article ul li a:hover h2::after {
  width: 100%;
}
.news_content div.wrap > div.wrapper > div article ul li a p {
  font-size: 2rem;
  font-weight: 400;
  color: #969696;
}
.news_content div.wrap > div.wrapper > div article ul li a h2 {
  position: relative;
  transition: all 0.3s ease;
  font-size: 2rem;
  font-weight: 400;
}
.news_content div.wrap > div.wrapper > div article ul li a h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
.news_content div.wrap > div.wrapper > a {
  display: table;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2rem;
  padding: 9px 23px;
  background-color: #de6262;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #de6262;
}
.news_content div.wrap > div.wrapper > a:hover {
  color: #de6262;
  background-color: #ffffff;
}

.pagination {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.pagination > span,
.pagination > a {
  font-size: 2rem;
  position: relative;
}
.pagination > span::after,
.pagination > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
.pagination > a {
  text-decoration: none;
}
.pagination > a:hover {
  text-decoration: none;
}
.pagination > a:hover::after {
  width: 100%;
}
.pagination .current {
  font-weight: 700;
}
.pagination .current::after {
  width: 100%;
}

.news_single_content article {
  margin: 0 !important;
}
.news_single_content article div.head {
  margin: 0 0 30px;
}
.news_single_content article div.head p {
  color: #969696;
  margin: 0 0 15px;
}
.news_single_content article div.head h1 {
  font-size: 2.5rem;
  font-weight: 500;
  padding: 0 0 14px;
  border-bottom: 2px solid #dddddd;
}
.news_single_content article .content h1 {
  font-size: 2.2rem;
  margin: 0 0 34px;
}
.news_single_content article .content h2 {
  font-size: 2.1rem;
  margin: 0 0 21px;
}
.news_single_content article .content h3 {
  font-size: 2rem;
  margin: 0 0 21px;
}
.news_single_content article .content h4 {
  font-size: 1.9rem;
  margin: 0 0 13px;
}
.news_single_content article .content h5 {
  font-size: 1.8rem;
  margin: 0 0 13px;
}
.news_single_content article .content h6 {
  font-size: 1.7rem;
  margin: 0 0 13px;
}
.news_single_content article .content p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 13px;
}
.news_single_content article .content img {
  margin: 0 0 56px;
}
.news_single_content article .content strong {
  font-weight: bold;
  font-size: inherit;
}
.news_single_content article .content em {
  font-style: italic;
  font-size: inherit;
}
.news_single_content article .content a {
  position: relative;
}
.news_single_content article .content a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
.news_single_content article .content a:hover {
  text-decoration: none;
}
.news_single_content article .content a:hover::after {
  width: 100%;
}
.news_single_content article .content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news_single_content article .content .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.news_single_content article .content .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.smt-menu {
  background: transparent url(../../assets/images/open.png) no-repeat scroll right bottom/40px 30px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  display: none;
}
.smt-menu.o {
  display: none;
}

.smt-menu-box {
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  width: 250px;
  height: max-content;
  right: -250px;
  top: 0;
  z-index: 11111;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  border-radius: 0 0 0 30px;
  padding: 71px 30px;
  transition: all 0.3s ease;
}
.smt-menu-box > div {
  background: transparent url(../../assets/images/close.png) no-repeat scroll right bottom/40px 30px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 13px;
  right: 13px;
}
.smt-menu-box > ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.smt-menu-box > ul > li > a {
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  gap: 6px;
  align-items: center;
}
.smt-menu-box > ul > li > a:hover {
  text-decoration: none;
}
.smt-menu-box > ul > li > a:hover span::after {
  width: 100%;
}
.smt-menu-box > ul > li > a img {
  width: 22px;
}
.smt-menu-box > ul > li > a span {
  display: block;
  position: relative;
}
.smt-menu-box > ul > li > a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s ease;
}
.smt-menu-box > ul > li > ul {
  padding: 0 0 8px;
}
.smt-menu-box > ul > li > ul > li:last-of-type {
  margin: 0;
}
.smt-menu-box > ul > li > ul > li a {
  display: block;
  font-size: 1.6rem;
  padding: 8px 0;
}
.smt-menu-box div.foot {
  display: flex;
  margin: 0 0 21px;
  padding: 0 15px;
  justify-content: space-between;
}
.smt-menu-box div.foot a {
  background-color: #1fa136;
  border-radius: 20px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: #d17d8140 0 3px 3px;
  display: block;
  width: 48.6111111111%;
  padding: 23px 0;
  text-align: center;
  text-decoration: none;
}
.smt-menu-box div.foot a:nth-of-type(2) {
  background-color: #fe9ba0;
}
.smt-menu-box div.foot a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1400px) {
  .front-page_content div.photo-access section.photo > div.slider .slick-next {
    right: 18%;
  }

  .front-page_content div.photo-access section.photo > div.slider .slick-prev {
    left: 18%;
  }
}
@media screen and (max-width: 1320px) {
  #masthead .site-header-main .site-branding nav {
    display: none;
  }

  .smt-menu {
    display: block;
  }

  .front-page_content > div.top section.about > div.wrap > div.wrapper > div:nth-of-type(3) > div > div {
    width: 90%;
  }

  #colophon .site-info {
    flex-direction: column;
    gap: 75px;
  }

  #colophon .site-info > div.left {
    flex-direction: column;
    gap: 20px;
  }

  #colophon .site-info > div.left > a.site-title p {
    margin: 0 auto;
  }

  #colophon .site-info > div.left > div {
    flex-direction: column;
    gap: 20px;
  }

  #colophon .site-info > div.left > div > a.insta {
    flex-direction: column;
  }

  #colophon .site-info > div.left > div > a.insta img {
    width: 70px;
  }

  #colophon .site-info > small {
    font-size: 16px;
  }
}
@media screen and (max-width: 1120px) {
  .front-page_content section.guide2 > div.wrap > div.top > img.img1 {
    margin: 62% 0 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .front-page_content section.guide2 > div.wrap > div.top {
    display: grid;
    grid-template-columns: 79.767123% 11.9452054795%;
    margin: 0 0 150px;
    position: relative;
    justify-content: space-around;
    padding: 0 20px;
  }

  .front-page_content section.guide2 > div.wrap > div.top > h2.headline {
    grid-column: 2;
    align-self: flex-start;
    margin: 0;
    grid-row: span 2;
    width: 100%;
    max-width: 116px;
  }

  .front-page_content section.guide2 > div.wrap > div.top > h3 {
    color: #de6262;
    font-size: 2rem;
    margin: 0 0 22px;
    text-align: center;
    font-weight: 500;
    grid-column: 1;
    grid-row: 1;
  }

  .front-page_content section.guide2 > div.wrap > div.top > p {
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 34px;
    display: block;
    word-break: keep-all;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }

  .front-page_content section.guide2 > div.wrap > div.top > img.img1 {
    grid-column: span 2;
    grid-row: 3;
    margin: 0;
    position: relative;
    left: -60px;
    width: 55%;
  }

  .front-page_content section.guide2 > div.wrap > div.top > h2.map {
    color: #696969;
    font-size: 2.5rem;
    margin: 0 0 62px;
    text-align: center;
    font-family: "KaiseiDecol";
    font-weight: 400;
    grid-column: span 2;
  }

  .front-page_content section.guide2 > div.wrap > div.top > img.map {
    grid-column: span 2;
    width: 100%;
    margin: 0 auto;
  }

  .front-page_content section.guide2 > div.wrap > div.top > img.img2 {
    grid-column: span 2;
    align-self: end;
    position: relative;
    bottom: -75px;
    max-width: 115%;
    right: unset;
    width: 83.8461538462%;
    margin: 0 0 0 auto;
    left: 15%;
  }

  .front-page_content section.guide2 > div.wrap > div.top > img.cloud2 {
    position: absolute;
    width: 32%;
    left: -3%;
    top: 75%;
  }

  .front-page_content section.guide2 > div.wrap > div.middle {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 60px;
  }

  .front-page_content section.guide2 > div.wrap > div.middle > div {
    width: 67.9487179487%;
    position: relative;
  }

  .front-page_content section.guide2 > div.wrap > div.middle > div:nth-of-type(odd) {
    left: -15%;
  }

  .front-page_content section.guide2 > div.wrap > div.middle > div:nth-of-type(even) {
    right: -15%;
    margin: 0 0 0 auto;
  }

  .front-page_content section.guide2 > div.wrap > div.middle > div p {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  }

  .front-page_content section.guide2 > div.wrap > div.bottom {
    grid-column: span 2;
    width: 100%;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > h3 {
    font-size: clamp(3rem, 4vw, 3.5rem);
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > p {
    margin: 0 0 37px;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > div {
    flex-direction: column;
    gap: 52px;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > div > div {
    gap: 8px;
    width: 100% !important;
    flex-direction: column;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > div > div > div p {
    font-size: clamp(1.6rem, 2.1vw, 2rem);
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > div > div:first-of-type > p {
    text-align: center;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > div > div > p {
    font-size: clamp(1.6rem, 2.1vw, 2rem);
    width: fit-content;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > img.cloud3 {
    display: block;
    margin: 0 0 0 auto;
    width: 25%;
    position: relative;
    left: 10%;
    display: none;
  }

  .front-page_content section.guide2 > div.wrap > div.bottom > div > div > div {
    width: 43%;
  }

  .front-page_content section.comp > div > h2 {
    width: auto;
  }

  .front-page_content section.comp > div {
    gap: 24px;
    padding: 38px 30px 70px;
    display: grid;
    grid-template-columns: 11.9452054795% 79.767123%;
    justify-content: space-around;
  }

  .front-page_content section.comp > div > div {
    display: contents;
  }

  .front-page_content section.comp > div > div > div {
    gap: 13px;
    width: 100%;
    grid-column: 2;
  }

  .front-page_content section.comp > div > div > img {
    width: 100%;
    grid-column: span 2;
  }

  .front-page_content div.photo-access section.photo {
    padding: 70px 0 130px;
  }

  .front-page_content div.photo-access section.photo > div.headline > h2 {
    max-width: 350px;
  }

  .front-page_content div.photo-access section.photo > div.headline > p {
    margin: 0 0 60px;
  }

  .front-page_content div.photo-access section.photo > div.slider div.slick-slide {
    margin: 0 30px;
  }

  .front-page_content div.photo-access section.photo > div.slider .slick-prev,
.front-page_content div.photo-access section.photo > div.slider .slick-next {
    display: none !important;
  }

  .front-page_content div.photo-access section.access {
    padding: 55px 0 91px;
  }

  .front-page_content div.photo-access section.access iframe {
    height: 53vw;
    margin: 0 0 58px;
  }

  .front-page_content div.photo-access section.access > h2 {
    max-width: 350px;
    padding: 0 30px;
  }

  .front-page_content div.photo-access section.access div.box {
    padding: 34px 30px;
    width: calc(100% - 60px);
  }

  .front-page_content div.photo-access section.access div.box > h2 {
    font-size: 2.3rem;
    gap: 5px;
  }

  .front-page_content div.photo-access section.access div.box > div.detail {
    gap: 22px;
    margin: 27px 0 0 0;
  }

  .front-page_content div.photo-access section.access div.box > div.detail > div {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .front-page_content div.photo-access section.access div.box > div.detail > div:first-of-type > div {
    justify-content: flex-start;
  }

  .news_content div.wrap {
    justify-content: space-around;
    padding: 76px 30px 150px;
  }

  .news_content div.wrap > div.wrapper > div {
    padding: 10% 8%;
    margin: 0 0 20px;
  }

  .news_content div.wrap > div.wrapper > div article ul li a {
    gap: 8px;
    flex-direction: column;
  }

  .news_content div.wrap > div.wrapper > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  .front-page_content > div.top section.about {
    padding: 0 5.625% 0 5.333333%;
  }

  .front-page_content > div.top section.about > div.wrap {
    width: 83.767123%;
    padding: 49px 5% 41px;
  }

  .front-page_content > div.top section.about > div.wrap > div.wrapper {
    flex-direction: column;
    margin: 0 0 18px;
  }

  .front-page_content > div.top section.about > div.wrap > div.wrapper > div {
    width: 100% !important;
  }

  .front-page_content > div.top section.news {
    padding: 0 5.625% 103px 5.333333%;
  }

  .front-page_content > div.top section.news > div {
    width: 83.767123%;
  }

  .front-page_content > div.top section.news > div > div {
    padding: 24px 7% 38px;
    margin: 0 0 20px;
  }

  .front-page_content > div.top section.news > div > div > h3 {
    font-size: 2rem;
    margin: 0 0 21px;
  }

  .front-page_content > div.top section.news > div > div ul li a {
    gap: 5px;
    flex-direction: column;
  }

  .front-page_content > div.top section.news > div > div ul li a p {
    font-size: 1.6rem;
  }

  .front-page_content > div.top section.news > div > div ul li a h2 {
    font-size: 1.6rem;
  }

  .front-page_content > div.top section.news > div > a {
    font-size: 1.6rem;
  }

  #masthead .site-header-main .site-branding {
    gap: 13px;
    padding: 13px 5% 28px;
  }

  #masthead .site-header-main .site-branding .site-title a {
    width: fit-content;
    gap: 8px;
  }

  #masthead .site-header-main .site-branding .site-title a img {
    width: 20%;
  }

  #masthead .site-header-main .site-branding .site-title a span {
    font-size: 2.5rem;
  }

  /*#masthead .site-header-main .site-branding .site-title a > svg.logo {
      width: 20%;
  }
  #masthead .site-header-main .site-branding .site-title a > svg.text {
      width: 100%;
      flex: 1;
  }*/
  .front-page_content > div.top > div.text {
    left: 0;
    margin: -3.5% 0 70px 0;
  }

  .front-page_content section.para {
    height: 40vw;
  }

  .front-page_content section.guide2 {
    background: #f7ede0 url(../../assets/images/repeat.svg) repeat scroll left top/50px 50px;
    padding: 70px 0;
    position: relative;
  }

  .front-page_content section.comp > div > div > div > div {
    flex-direction: column;
  }

  .front-page_content section.comp > div > div > div > div h3 {
    width: auto;
  }

  .front-page_content > div.top section.about {
    margin: 0 auto 70px;
  }

  .front-page_content div.photo-access section.photo > div.headline > h2 {
    max-width: 250px;
  }

  .front-page_content div.photo-access section.photo > div.slider div.slick-slide {
    margin: 0 40px;
  }

  .front-page_content div.photo-access section.access > h2 {
    max-width: 250px;
    margin: 0 0 45px 21px;
    padding: 0;
  }

  .front-page_content div.photo-access section.access div.box > div.img {
    gap: 10px;
    flex-direction: column;
  }

  .front-page_content div.photo-access section.access div.box > div.img img {
    width: 100%;
  }

  .front-page_content div.photo-access section.access div.box > img {
    width: 100%;
  }

  .pagination {
    gap: 13px;
  }

  .site-inner {
    background: #f0efe7 url(../../assets/images/repeat.svg) repeat scroll left top/50px 50px;
  }

  .front-page_content div.photo-access {
    background: #f0efe7 url(../../assets/images/repeat.svg) repeat scroll left top/50px 50px;
  }
}
@media screen and (max-width: 500px) {
  .front-page_content > div.top section.about > div.wrap > h3 {
    font-size: clamp(1.5rem, 1.72vw, 2.5rem);
  }

  .front-page_content > div.top section.about > div.wrap > div.wrapper > div > h3 {
    font-size: clamp(2.3rem, 2.3vw, 3.5rem);
  }

  .front-page_content > div.top section.about > div.wrap > div.wrapper > div > h3 img {
    width: 22px;
  }

  .front-page_content div.photo-access section.photo > div.slider div.slick-slide {
    margin: 0 20px;
  }
}