@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Noto+Sans+JP:wght@700;900&family=Noto+Serif+JP:wght@200;300;400&display=swap");
.pankuzuLi, .clear {
  *zoom: 1;
}
.pankuzuLi:after, .clear:after {
  content: "";
  display: table;
  clear: both;
}

.contentBox01 .wrapBox, ul.clm {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
カラム制御：デフォルトで1～5カラムまで対応
PC用floatによるカラム制御

html：col_1～5まで対応
例）3列で折り返し
<ul class="col_3">
	<li></li>
	<li></li>
	<li></li>
</ul>

scss：mixinでカラム設定を自動処理化

.col_3 {
	@include colmg(30);
}

数値設定はアイテム間余白（デフォルトは20）;
※縦、横ともに外側への約は発生しない

*/
/*
example
@include vaM;
*/
/*
example
@include taJ
*/
/*
example
@include dotted(#COLOR, WidthPX,SpaceingPX,HeightPX); 横破線
@include dotted(#e6e1d2, 4,4,2);
*/
/*
example
@include dotted-y(#COLOR, WidthPX,SpaceingPX,LengthPX,); 横破線
@include dotted-y(#e6e1d2, 4,4,2,10);
*/
/*
example
@include gradient(#StartColor, #EndColor, vertical); 垂直方向
@include gradient(#StartColor, #EndColor, horizontal); 水平方向
@include gradient(#StartColor, #EndColor, radial); 円方向
*/
/*////////////////////////////////////////////////////

    汎用スタイル

////////////////////////////////////////////////////*/
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul, ol, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  border: none;
  vertical-align: top;
  zoom: 1;
}

/*////////////////////////////////////////////////////

	フォント・文字サイズ設定

////////////////////////////////////////////////////*/
html {
  font-size: 62.5%;
}

body {
  /*font size自動調整をきる*/
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴシック", "Noto Sans", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
}

.fontLibre {
  font-family: "Libre Baskerville";
}

/*////////////////////////////////////////////////////

	共通部分レイアウト

////////////////////////////////////////////////////*/
/* ------------------------------------------------
	ヘッダー
------------------------------------------------ */
/* ------------------------------------------------
	フッター
------------------------------------------------ */
/*////////////////////////////////////////////////////

	汎用スタイル
	全頁で使用可能な汎用スタイル
	・見出し
	・リンク
	・リスト
	・記述リスト
	・テーブル
	・囲み枠
	・汎用レイアウトセット

////////////////////////////////////////////////////*/
/* ------------------------------------------------
	その他
------------------------------------------------ */
.hide {
  display: none;
}

/* ------------------------------------------------
	スペース
------------------------------------------------ */
.space01 {
  height: 30px;
  clear: both;
  display: block;
}

.space02 {
  height: 20px;
  clear: both;
  display: block;
}

/* ------------------------------------------------
	パンくずリスト
------------------------------------------------ */
.pankuzuLi {
  padding-top: 10px;
  width: 1000px;
  margin: 0 auto;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .pankuzuLi {
    display: none;
  }
}
.pankuzuLi li {
  position: relative;
  padding-right: 15px;
  float: left;
}
.pankuzuLi li a {
  color: #ffca31;
}
.pankuzuLi li:after {
  right: 0;
  content: "";
  height: 0;
  position: absolute;
  width: 0px;
  border-top: 3px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 3px solid transparent;
  border-left-color: #696969;
  top: 50%;
  margin-top: -3px;
  margin-bottom: 30px;
}
.pankuzuLi li:last-child:after {
  display: none;
  content: none;
}

/* ------------------------------------------------
	見出し
------------------------------------------------ */
/* ------------------------------------------------
	p
------------------------------------------------ */
/* ------------------------------------------------
	リンク
------------------------------------------------ */
/* ------------------------------------------------
	強調
------------------------------------------------ */
/* ------------------------------------------------
	リスト
------------------------------------------------ */
/* ベーシックなリスト */
/* 注釈用のリスト */
.li_caution01 li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.li_caution01 li:last-child {
  margin-bottom: 0;
}

/* リストを2カラムで表示 */
ul.clm {
  width: 50%;
  float: left;
  padding-right: 10px;
}
ul.clm:last-child {
  padding-right: 0;
}

/* ------------------------------------------------
	テーブル
------------------------------------------------ */
/* ------------------------------------------------
	汎用レイアウト
------------------------------------------------ */
.contentBox01.style01 {
  background-color: #ffca31;
}
.contentBox01 .wrapBox {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media screen and (max-width: 767px) {
  .contentBox01 .wrapBox {
    width: 100%;
  }
}

/*////////////////////////////////////////////////////

	トップページ用スタイル

////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////

	ページごとの個別の設定

////////////////////////////////////////////////////*/
header {
  position: relative;
}
header nav {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999999999;
}
@media screen and (max-width: 767px) {
  header nav {
    top: 15px;
    right: 15px;
  }
}

.cont01 picture, .cont02 picture, .cont05 picture {
  display: inline-block;
}

main .contWrap01 {
  position: relative;
  box-sizing: border-box;
  background: #E4E5D8;
  padding: 230px 32px 100px;
}
main .contWrap01.style01 {
  padding: 100px 32px 200px;
}
@media screen and (max-width: 767px) {
  main .contWrap01.style01 {
    padding: 100px 20px 100px;
  }
}
@media screen and (max-width: 767px) {
  main .contWrap01 {
    padding: 100px 20px 50px;
  }
}
main .contWrap02 {
  position: relative;
  box-sizing: border-box;
  background: #0D152C;
  padding: 100px 32px;
}
@media screen and (max-width: 767px) {
  main .contWrap02 {
    padding: 50px 20px;
  }
}
main .contWrap02::after {
  content: "";
  background-color: #252B3D;
  width: 50%;
  top: 0;
  right: 0;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 0;
}
main .contWrap03 {
  position: relative;
  box-sizing: border-box;
  background: #E4E5D8;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  main .contWrap03 {
    padding: 50px 0;
  }
}
main .contWrap03 section {
  width: 90%;
  margin: 0 auto;
}
main .contWrap03 section h2 {
  z-index: 999999;
  position: relative;
  font-family: "Libre Baskerville";
  font-weight: normal;
  font-style: italic;
  font-size: 77px;
  color: #303030;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section h2 {
    font-size: 30px;
  }
}
main .contWrap03 section h2 span {
  font-family: "";
  font-weight: 500;
  font-size: 15px;
  font-style: normal;
  color: #303030;
  vertical-align: middle;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section h2 span {
    display: block;
    font-size: 13px;
  }
}
main .contWrap03 section h2 span::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #c5c3b7;
  vertical-align: middle;
  margin-left: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section h2 span::before {
    margin-left: 0;
    margin-right: 5px;
    width: 15px;
  }
}
main .contWrap03 section .cont {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999999;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont {
    flex-direction: column;
  }
}
main .contWrap03 section .cont .box {
  position: relative;
  z-index: 90;
  width: 48%;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont .box {
    width: 100%;
  }
}
main .contWrap03 section .cont .box h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 27px;
  line-height: 3.5rem;
  color: #303030;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont .box h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
main .contWrap03 section .cont .box .tit {
  font-weight: 900;
  font-size: 28px;
  line-height: 36px;
  text-align: left;
  color: #303030;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont .box .tit {
    font-size: 20px;
  }
}
main .contWrap03 section .cont .box .tit::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  background-color: #a29964;
}
main .contWrap03 section .cont .box p {
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont .box p {
    font-size: 14px;
  }
}
main .contWrap03 section .cont .box table {
  margin-top: 20px;
}
main .contWrap03 section .cont .box table tr th {
  vertical-align: top;
  text-align: left;
  color: #303030;
  font-weight: normal;
  border-right: 1px solid #c5c3b7;
  padding-right: 5px;
  line-height: 1.7rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont .box table tr th {
    font-size: 12px;
    width: 60px;
  }
}
main .contWrap03 section .cont .box table tr td {
  vertical-align: top;
  text-align: left;
  color: #303030;
  padding-left: 10px;
  line-height: 1.7rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .cont .box table tr td {
    font-size: 12px;
  }
}
main .contWrap03 section .google-maps {
  position: relative;
  z-index: 90;
  width: 48%;
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .contWrap03 section .google-maps {
    margin-top: 30px;
    width: 100%;
    padding-bottom: 80%;
  }
}
main .contWrap03 section .google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
main .contWrap03 .imgArt {
  width: 800px;
  height: 800px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -100px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main .contWrap03 .imgArt {
    width: 400px;
    height: 400px;
    top: -50px;
  }
}
main .contWrap03 .imgArt .wrap {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  right: -150px;
  top: 0;
}
main .contWrap03 .imgArt .wrap img {
  width: 100%;
  height: auto;
  animation: 30s linear infinite rotation;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
main .copy {
  font-size: 15px;
  line-height: 30px;
  text-align: left;
  color: #7a7a7a;
  padding-left: 32px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  main .copy {
    font-size: 11px;
    text-align: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main .left15 {
    margin-left: 15px;
  }
}
main .titWrap {
  position: relative;
  z-index: 9999999;
}
main .titWrap .tit {
  position: absolute;
  top: -90px;
}
@media screen and (max-width: 767px) {
  main .titWrap .tit {
    top: -30px;
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  main .titWrap .tit .tit01 {
    position: relative;
    margin-bottom: 10px;
  }
}
main .titWrap .tit .tit01 h1 {
  position: relative;
  left: 0;
  z-index: 999;
  font: italic normal normal 94px/116px Libre Baskerville;
  color: #303030;
}
@media screen and (max-width: 767px) {
  main .titWrap .tit .tit01 h1 {
    font-size: 35px;
    line-height: 1rem;
  }
}
main .titWrap .tit .tit01 h1 span {
  display: block;
  font: italic normal normal 47px/59px Libre Baskerville;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  main .titWrap .tit .tit01 h1 span {
    font-size: 20px;
    padding-left: 0;
  }
}
main .titWrap .tit .tit01 p {
  font: italic normal normal 190px/235px Libre Baskerville;
  display: block;
  position: absolute;
  color: #C5C3B7;
  top: -136px;
  left: 0;
  z-index: 99;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  main .titWrap .tit .tit01 p {
    font-size: 80px;
  }
}
main .titWrap .tit .subTit {
  font: normal normal bold 15px/30px;
  font-family: "Noto Serif JP", serif;
  padding-left: 20px;
  padding-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main .titWrap .tit .subTit {
    padding-left: 0;
    font-size: 13px;
    padding-top: 0;
    position: absolute;
    bottom: -15px;
    right: 0;
  }
}
main .mv {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  main .mv {
    flex-direction: column;
  }
}
main .mv .main01 {
  width: 30%;
  padding-top: 200px;
  z-index: 999999;
}
@media screen and (max-width: 767px) {
  main .mv .main01 {
    padding-top: 60px;
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  main .mv .main01 picture {
    position: absolute;
    top: 80px;
    left: -10px;
    width: 30%;
  }
}
main .mv .main01 img {
  width: 100%;
  height: auto;
}
main .mv .main02 {
  width: 65%;
}
@media screen and (max-width: 767px) {
  main .mv .main02 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main .mv .main02 picture {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}
main .mv .main02 img {
  width: 100%;
  height: auto;
}
main .mv .main02 .lead {
  margin-top: 80px;
  font: normal normal normal 15px/35px;
  letter-spacing: 0px;
  color: #303030;
}
@media screen and (max-width: 767px) {
  main .mv .main02 .lead {
    margin-top: 40px;
    font-size: 14px;
  }
}
main .cont01 {
  background: #E4E5D8;
}
main .cont01 img {
  width: 100%;
  height: auto;
}
main .cont01 .pic01 {
  position: relative;
}
main .cont01 .pic01 picture {
  z-index: 1;
  position: relative;
}
main .cont01 .pic01 .news-banner {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 200px;
  overflow: hidden;
  z-index: 9999;
  position: absolute;
  top: 85%;
  left: 0;
}
main .cont01 .pic01 .news-banner__content {
  display: inline-block;
  color: #fff;
  line-height: 30px;
  white-space: nowrap;
  animation: animate-banner 200s linear infinite;
}
main .cont01 .pic01 .news-banner__content p {
  font: italic normal normal 153px/189px Libre Baskerville;
  color: #303030;
}
@media screen and (max-width: 767px) {
  main .cont01 .pic01 .news-banner__content p {
    font-size: 50px;
    line-height: 50px;
  }
}
main .cont01 .pic01 .news-banner__content > * {
  display: inline-block;
}
main .cont02 {
  margin-top: 100px;
  width: 80%;
  margin: 100px auto 0;
  z-index: 98;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .cont02 {
    margin: 0 auto 0;
    width: 100%;
  }
}
main .cont02 img {
  width: 100%;
  height: auto;
}
main .cont03 {
  margin-top: -100px;
  z-index: 99;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .cont03 {
    margin-top: -30px;
  }
}
main .cont03.style01 {
  flex-direction: row-reverse;
}
main .cont03.style01 picture {
  width: 65%;
}
@media screen and (max-width: 767px) {
  main .cont03.style01 picture {
    margin-left: 10px;
  }
}
main .cont03.style01 .txt {
  width: 35%;
}
main .cont03.style01 .txt .inBox .txtEN {
  text-align: right;
  text-indent: 200px;
}
@media screen and (max-width: 767px) {
  main .cont03.style01 .txt .inBox .txtEN {
    text-indent: 0;
    text-align: center;
  }
}
main .cont03.style02 {
  margin-top: 80px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .cont03.style02 {
    margin-top: 40px;
  }
}
main .cont03.style02 picture {
  width: 45%;
}
main .cont03.style02 .txt .inBox {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
main .cont03.style02 .txt .inBox .txtEN {
  margin-top: -200px;
  color: #4C505C;
  opacity: 0.2;
  text-indent: 0;
  text-align: center;
  left: 50%;
  margin-left: -25%;
}
@media screen and (max-width: 767px) {
  main .cont03.style02 .txt .inBox .txtEN {
    margin-top: -50px;
  }
}
main .cont03.style02 .txt .inBox .txtMain {
  margin-top: -200px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  main .cont03.style02 .txt .inBox .txtMain {
    margin-top: -50px;
  }
}
main .cont03.style02::after {
  display: none;
}
main .cont03.pt02 {
  margin-top: -200px;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  main .cont03.pt02 {
    margin-top: -70px;
  }
}
main .cont03.pt02 picture {
  width: 40%;
}
@media screen and (max-width: 767px) {
  main .cont03.pt02 picture.no01 {
    margin-top: 45px;
  }
}
main .cont03.pt02 picture.no02 {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  main .cont03.pt02 picture.no02 {
    margin-top: 100px;
  }
}
main .cont03.pt02::after {
  display: none;
}
main .cont03 picture {
  width: 50%;
}
main .cont03 picture img {
  width: 100%;
  height: auto;
}
main .cont03 .txt {
  width: 50%;
}
main .cont03 .txt .inBox {
  position: relative;
}
main .cont03 .txt .inBox .txtEN {
  position: absolute;
  top: -20px;
  left: 0;
  color: #D9D7CB;
  font: italic normal normal 82px/100px Libre Baskerville;
  z-index: 99;
  text-indent: -200px;
}
@media screen and (max-width: 767px) {
  main .cont03 .txt .inBox .txtEN {
    font-size: 25px;
    line-height: 3rem;
    text-indent: 0;
    text-align: center;
  }
}
main .cont03 .txt .inBox .txtMain {
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 500;
  color: #303030;
  z-index: 999;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main .cont03 .txt .inBox .txtMain {
    font-size: 15px;
    line-height: 3rem;
    text-align: center;
  }
}
main .cont03::after {
  content: "";
  display: block;
  clear: both;
}
main .cont04 {
  display: flex;
  justify-content: space-between;
  margin-top: -40px;
  z-index: 100;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .cont04 {
    margin-bottom: 30px;
    margin-top: -30px;
  }
}
main .cont04 picture {
  width: 30%;
}
main .cont04 picture img {
  width: 100%;
  height: auto;
}
main .cont04 picture.no02 {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  main .cont04 picture.no02 {
    margin-top: 60px;
  }
}
main .cont04 picture.no03 {
  margin-top: 350px;
}
@media screen and (max-width: 767px) {
  main .cont04 picture.no03 {
    margin-top: 120px;
  }
}
main .cont05 {
  z-index: 99;
  position: relative;
}
main .cont05 picture {
  position: relative;
  width: 70%;
  margin: -200px auto 0;
  display: block;
}
@media screen and (max-width: 767px) {
  main .cont05 picture {
    width: 90%;
    margin: -150px auto 0;
  }
}
main .cont05 picture img {
  width: 100%;
  height: auto;
}
main .cont05 picture .txt {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
main .cont05 picture .txt .inBox {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main .cont05 picture .txt .inBox .txtEN {
  color: #D9D7CB;
  font: italic normal normal 82px/100px Libre Baskerville;
  z-index: 99;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .cont05 picture .txt .inBox .txtEN {
    font-size: 25px;
    line-height: 3rem;
  }
}
main .cont05 picture .txt .inBox .txtMain {
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  z-index: 999;
  position: relative;
  text-align: center;
  margin-top: -137px;
}
@media screen and (max-width: 767px) {
  main .cont05 picture .txt .inBox .txtMain {
    font-size: 15px;
    line-height: 3rem;
    margin-top: -45px;
  }
}

.names {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .names {
    width: 100%;
  }
}
.names ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.names ul li {
  width: 25%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}

@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.splide {
  padding: 20px 0;
  box-sizing: border-box;
  background: #E4E5D8;
}
.splide.card06 {
  padding: 0 0 20px 0;
}

.splide__slide.wide {
  width: 400px !important;
}
@media screen and (max-width: 767px) {
  .splide__slide.wide {
    width: 200px !important;
  }
}
.splide__slide.wide2 {
  width: 300px !important;
}
@media screen and (max-width: 767px) {
  .splide__slide.wide2 {
    width: 150px !important;
  }
}

.splide__list {
  align-items: center;
}
.splide__list li img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .no-sp {
    display: none;
  }
}

@media (min-width: 768px) {
  .heading {
    font-size: 24px;
  }
}
.insta {
  display: flex;
  align-items: center;
  padding-left: 32px;
  margin-top: 30px;
}
.insta p {
  font-size: 13px;
}
.insta .img {
  margin-right: 10px;
  width: 100px;
}
.insta .img img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */