@charset "UTF-8";

/*---------------------------------
  Google Fonts
---------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

.NotoSans { font-family: 'Noto Sans JP', sans-serif; }
.NotoSerif { font-family: 'Noto Serif JP', serif; }

/*---------------------------------
  表示・非表示（PC / TB / SP）
---------------------------------*/
.pconly {
	display: block;
}
.tbonly {
	display: block;
}
.sponly {
	display: none !important;
}
.pcnone {
	display: none;
}
@media screen and (max-width: 767px) {
.pconly {
	display: none !important;
}
.tbonly {
	display: none !important;
}
.sponly {
	display: block;
}
.pcnone {
	display: inline-block;
}
.spnone {
	display: none;
}
}

/*---------------------------------
  html/bodyの設定
---------------------------------*/
html {
	font-size: 62.5%; /* 62.5%は10px */
	font-family: 'Noto Sans JP', sans-serif;
}
body {
	color: #666464;
	background: #ffffff;
	overflow-x: hidden;
	word-wrap: break-word;
}
@media screen and (max-width: 767px) {
html {
	font-size: 62.5%; /* 62.5%は10px */
	font-family: 'Noto Sans JP', sans-serif;
}
body {
	color: #666464;
	background: #ffffff;
	overflow-x: hidden;
	word-wrap: break-word;
}
}

/*---------------------------------
  画像
---------------------------------*/
img {
	width:100%;
	height:auto;
}
#maincontentswrap01 img {
   vertical-align:bottom;
   pointer-events: none;
}
#maincontentswrap01 a img {
	border-style:none;
}
#maincontentswrap01 img {
	width:100%;
	height:auto;
	image-rendering: auto;
}
#maincontentswrap01 img[src$=".svg"] {
    width: 100%;
}


/*---------------------------------
  テキストリンク
---------------------------------*/
#maincontentswrap01 a:link {
	color: #666464;
	text-decoration: none;
	transition: 1.0s;
}
#maincontentswrap01 a:visited {
	color: #666464;
	text-decoration: none;
	transition: 1.0s;
}
#maincontentswrap01 a:active {
    color: #0e8aa9;
    text-decoration: none;
    opacity: 1;
    transition: 1.0s;
}
#maincontentswrap01 a:hover {
    color: #0e8aa9;
    text-decoration: none;
    opacity: 1;
    transition: 1.0s;
}
#maincontentswrap01 a img {
    opacity: 1;
    transition: 1.0s;
}
#maincontentswrap01 a:hover img {
    color: #0e8aa9;
    text-decoration: none;
    /*filter: drop-shadow(0px 0px 5px rgba(255,243,53,1.0));*/
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.5));
    -webkit-text-stroke: 1px #fff338;
    text-stroke: 1px #fff338;
    opacity: 1;
    transition: 1.0s;
}

/*---------------------------------
  画像リンク
---------------------------------*/
a img {
	display: block;
}

/*---------------------------------
  フォントカラー
---------------------------------*/
.font-white01 { color: #ffffff; }
.font-blue01 { color: #2B457D; }
.font-black01 { color: #000000; }
.font-red01 { color: #c50018; }
.font-yellow01 { color: #fff338; }


/*---------------------------------
  テキスト頭揃え
---------------------------------*/
.indent01-01 {
	text-indent: -1em;
	padding: 0 0 0 1em;
}
.indent01-05 {
	text-indent: -1.5em;
	padding: 0 0 0 1.5em;
}

/*---------------------------------
  文字間調整用
---------------------------------*/
.letterspace01 {
	letter-spacing: -0.02em;
}

/*---------------------------------
  テキスト位置
---------------------------------*/
.textleft {
	text-align: left !important;
}
.textcenter {
	text-align: center !important;
}
.textright {
	text-align: right !important;
}

/*---------------------------------
  改行設定
---------------------------------*/
.break:before {
	content: "\A";
	white-space: pre;
}
.pcno-break:before {
	content: "";
	white-space: pre;
}
.spno-break:before {
	content: "\A";
	white-space: pre;
}
@media screen and (max-width: 767px) {
.break:before {
	content: "\A";
	white-space: pre;
}
.pcno-break:before {
	content: "\A";
	white-space: pre;
}
.spno-break:before {
	content: "";
	white-space: pre;
}
}


/*---------------------------------
  ページ内リンク位置設定
---------------------------------*/
#link01,
#link02,
#link03,
#link04,
#link05 {
    padding: 50px 0 0;
    margin: -50px 0 0;
}

/*---------------------------------
  ローディング
---------------------------------*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #08287f;
	background-size: 10%;
	z-index: 999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定 */
#splash-logo img {
	width:80%;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
from {
	opacity: 0;
	transform: translateY(100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}
}

/*画面遷移アニメーション*/
/*画面遷移の後現れるコンテンツ設定*/
#wrapper{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
0% {
	opacity: 0;
}
100% {
	opacity: 1;
}
}
@media screen and (max-width: 767px) {
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #08287f;
	background-size: 30%;
	z-index: 999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定 */
#splash-logo img {
	width:50%;
}
}


/*---------------------------------
  ヘッダー
---------------------------------*/
header {
	width: 100%;
    padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
header {
	width: 100%;
    padding: 45px 0 0;
}
}


/*---------------------------------
  ナビ（PC）
---------------------------------*/
#pcheadnaviwrap01 {
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 999;
    background: #000000;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
}
#pcheadnaviwrap02 {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#pcheadnaviwrap02 ul {
    display: table;
    margin: 0 auto;
}
#pcheadnaviwrap02 ul li {
    display: table-cell;
    width: auto;
    vertical-align: middle;
}
#pcheadnaviwrap02 ul li:first-child {
    width: 155px;
    padding: 0 20px 0 0;
}
#pcheadnaviwrap02 ul li:last-child {
}
#pcheadnaviwrap02 ul li p:after {
    display: inline-block;
    content: "｜";
    padding: 0 0.5em;
}
#pcheadnaviwrap02 ul li:last-child p:after {
    display: inline-block;
    content: "";
    padding: 0;
}
#pcheadnaviwrap02 ul li:nth-last-child(2) p:after {
    display: inline-block;
    content: "";
    padding: 0 1em 0 0;
}

#pcheadnaviwrap02 ul li a:link {
    display: block;
    color: #ffffff;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li a:visited {
    display: block;
    color: #ffffff;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li a:active {
    display: block;
    color: #0e8aa9;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li a:hover {
    display: block;
    color: #0e8aa9;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li a:hover p:after {
    display: inline-block;
    content: "｜";
    padding: 0 0.5em;
    color: #ffffff;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li:last-child a:hover p:after {
    display: inline-block;
    content: "";
    padding: 0;
    color: #ffffff;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li:nth-last-child(2) a:hover p:after {
    display: inline-block;
    content: "";
    padding: 0 1em 0 0;
    color: #ffffff;
	transition: 1.0s;
}

#pcheadnaviwrap02 ul li a:link img {
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li a:hover img {
    filter: drop-shadow(0px 0px 8px rgba(240,255,0,0.8));
	transition: 1.0s;
}

#pcheadnaviwrap02 ul li:last-child a:link {
    display: block;
    color: #c1272d;
    background: #ffffff;
    padding: 5px 10px;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li:last-child a:visited {
    display: block;
    color: #c1272d;
    background: #ffffff;
    padding: 5px 10px;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li:last-child a:active {
    display: block;
    color: #ffffff;
    background: #c1272d;
    padding: 5px 10px;
	transition: 1.0s;
}
#pcheadnaviwrap02 ul li:last-child a:hover {
    display: block;
    color: #ffffff;
    background: #c1272d;
    padding: 5px 10px;
	transition: 1.0s;
}
@media screen and (max-width: 767px) {
#pcheadnaviwrap01 {
    display: none;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 999;
    background: #000000;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
}
}


/*---------------------------------
  ハンバーガーナビ（スマホ）
---------------------------------*/
#g-nav {
    display: none;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top: -100vh;
    left: 0;
	width: 100%;
    height: 100vh;/*ナビの高さ*/
    background: rgba(0,0,0,1.0);
	opacity: 1.0;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-navwrap {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
	width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.g-navinner01 {
	display: table;
	width: 98%;
	margin: 0 auto;
	font-size: 1.40625vw; /* 1280px基準で18px */
	font-weight: 900;
	color: #ffffff;
}
.g-navilistwrap01 {
	display: block;
}
.g-navilistwrap01 ul {
	width: 100%;
    text-align: center;
    border-top: 1px solid #ffffff;
}
.g-navilistwrap01 ul li {
	display: block;
	width: 100%;
    border-bottom: 1px solid #ffffff;
}
.g-navilistwrap01 ul li a {
	display: block;
	color: #ffffff !important;
}
.g-navilistwrap01 ul li a:link {
	color: #ffffff !important;
	background: none !important;
	text-decoration: none;
	padding: 1.5625vw 0; /* 1280px基準でpadding: 20px 0; */
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a:visited {
	color: #ffffff;
	background: none;
	text-decoration: none;
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a:hover {
	color: #000000 !important;
	background: #ffffff !important;
	text-decoration: none;
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a:active {
	color: #ffffff;
	background: #000000;
	text-decoration: none;
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a p {
	display: block;
}
.g-navilistwrap01 ul li a p:after {
	display: block;
	width: 1.40625vw; /* 1280px基準で18px */
	margin: 0.390625vw auto 0; /* 1280px基準でmargin: 5px auto 0; */
	padding: 0;
	content: url("../common_img/arrow.svg");
	transition: all 0.5s ease 0s;
}
.g-navilistwrap01 ul li a:hover p:after {
	content: url("../common_img/arrowblack.svg");
	transform: rotate3d(0, 0, 1, 180deg);
	-webkit-transform: rotate3d(0, 0, 1, 180deg);
	transform-origin: center center;
	transition: all 0.5s ease 0s;
	-webkit-transform-origin: center center;
	-webkit-transition: all 0.5s ease 0s;
}

#spheadlogowrap {
    width: 21.875vw; /* 1280px基準で280px */
    position: absolute;
    top: 50%;
    left: 0.78125vw; /* 1280px基準で10px */
    transform: translate(0%,-50%);
}

/*========= ボタンのためのCSS ===============*/
#openbtnwrap {
    display: none;
    width: 100%;
    height: 45px;
	position: fixed;
	cursor: pointer;
    z-index: 9999;/*ボタンを最前面に*/
    background: rgba(0,0,0,1.0);
}
#openbtninner {
    width: 45px;
    height: 45px;
	top: 0;
	right: 0;
	margin: 0;
    background: rgba(0,0,0,1.0);
	position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
	transition: all 0.6s;
}
.openbtn {
	display: block;
	position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 0;
	right: 0;
}
	
/*×に変化*/	
.openbtn span {
    display: inline-block;
    transition: all .4s;
	position: absolute;
    right: 12px;
    height: 3px;
	background: #ffffff;
  	width: 35px;
	transition: all 0.6s;
    border-radius: 10px;
  }

.openbtn span:nth-of-type(1) {
	top: 12px;
}

.openbtn span:nth-of-type(2) {
	top: 22px;
}

.openbtn span:nth-of-type(3) {
	top: 32px;
}

#openbtnwrap.active #openbtninner {
	transition: all 0.6s;
}
#openbtnwrap.active .openbtn span {
	background: #ffffff;
	transition: all 0.6s;
}
#openbtnwrap.active .openbtn span:nth-of-type(1) {
    top: 12px;
    right: 12px;
    transform: translateY(10px) rotate(-45deg);
    width: 35px;
}

#openbtnwrap.active .openbtn span:nth-of-type(2) {
	opacity: 0;
}

#openbtnwrap.active .openbtn span:nth-of-type(3) {
    top: 32px;
    right: 12px;
    transform: translateY(-10px) rotate(45deg);
    width: 35px;
}
@media screen and (max-width: 767px) {
#g-nav {
    display: block;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top: -100vh;
    left: 0;
	width: 100%;
    height: 100vh;/*ナビの高さ*/
    background: rgba(0,0,0,1.0);
	opacity: 1.0;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-navwrap {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
	width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.g-navinner01 {
	display: table;
	width: 98%;
	margin: 0 auto;
	font-size: 2.666666666666667vw; /* 750px基準で20px */
	font-weight: 900;
	color: #ffffff;
}
.g-navilistwrap01 {
	display: block;
}
.g-navilistwrap01 ul {
	width: 100%;
    text-align: center;
    border-top: 1px solid #ffffff;
}
.g-navilistwrap01 ul li {
	display: block;
	width: 100%;
    border-bottom: 1px solid #ffffff;
}
.g-navilistwrap01 ul li a {
	display: block;
	color: #ffffff !important;
}
.g-navilistwrap01 ul li a:link {
	color: #ffffff !important;
	background: none !important;
	text-decoration: none;
	padding: 2vw 0; /* 750px基準でpadding: 20px 0; */
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a:visited {
	color: #ffffff;
	background: none;
	text-decoration: none;
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a:hover {
	color: #000000 !important;
	background: #ffffff !important;
	text-decoration: none;
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a:active {
	color: #ffffff;
	background: #000000;
	text-decoration: none;
	transition: 1.0s ;
}
.g-navilistwrap01 ul li a p {
	display: block;
}
.g-navilistwrap01 ul li a p:after {
	display: block;
	width: 3.2vw; /* 750px基準で23px */
	margin: 0.6666666666666667vw auto 0; /* 750px基準でmargin: 5px auto 0; */
	padding: 0;
	content: url("../common_img/arrow.svg");
	transition: all 0.2s ease 0s;
}
.g-navilistwrap01 ul li a:hover p:after {
	content: url("../common_img/arrowblack.svg");
	transform: rotate3d(0, 0, 1, 180deg);
	-webkit-transform: rotate3d(0, 0, 1, 180deg);
	transform-origin: center center;
	transition: all 0.2s ease 0s;
	-webkit-transform-origin: center center;
	-webkit-transition: all 0.2s ease 0s;
}
#spheadlogowrap {
    width: 37.333333333333336vw; /* 750px基準で280px */
    position: absolute;
    top: 50%;
    left: 1.6vw; /* 750px基準で12px */
    transform: translate(0%,-50%);
}

/*========= ボタンのためのCSS ===============*/
#openbtnwrap {
    display: block;
    width: 100%;
    height: 45px;
	position: fixed;
	cursor: pointer;
    z-index: 9999;/*ボタンを最前面に*/
    background: rgba(0,0,0,1.0);
}
#openbtninner {
    width: 45px;
    height: 45px;
	top: 0;
	right: 0;
	margin: 0;
    background: rgba(0,0,0,1.0);
	position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
	transition: all 0.6s;
}
.openbtn {
	display: block;
	position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 0;
	right: 0;
}
	
/*×に変化*/	
.openbtn span {
    display: inline-block;
    transition: all .4s;
	position: absolute;
    right: 12px;
    height: 3px;
	background: #ffffff;
  	width: 35px;
	transition: all 0.6s;
    border-radius: 10px;
  }

.openbtn span:nth-of-type(1) {
	top: 12px;
}

.openbtn span:nth-of-type(2) {
	top: 22px;
}

.openbtn span:nth-of-type(3) {
	top: 32px;
}

#openbtnwrap.active #openbtninner {
	transition: all 0.6s;
}
#openbtnwrap.active .openbtn span {
	background: #ffffff;
	transition: all 0.6s;
}
#openbtnwrap.active .openbtn span:nth-of-type(1) {
    top: 12px;
    right: 12px;
    transform: translateY(10px) rotate(-45deg);
    width: 35px;
}

#openbtnwrap.active .openbtn span:nth-of-type(2) {
	opacity: 0;
}

#openbtnwrap.active .openbtn span:nth-of-type(3) {
    top: 32px;
    right: 12px;
    transform: translateY(-10px) rotate(45deg);
    width: 35px;
}
}


/*---------------------------------
  メインコンテンツ
---------------------------------*/
#maincontentswrap01 {
	width: 100%;
    padding: 40px 0 0;
    font-size: 1.6rem;
    line-height: 180%;
}
#maincontentswrap02 {
	width: 994px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
#maincontentswrap01 {
	width: 100%;
    padding: 30px 0 0;
    font-size: 3.2vw; /* 750px基準で22px */
    line-height: 180%;
}
#maincontentswrap02 {
	width: 100%;
	margin: 0 auto;
}
}


/*---------------------------------
  コンテンツ（共通）
---------------------------------*/
.contentswrap01 {
	width: 100%;
	padding: 0 0 30px;
    margin: 0 0 30px;
}
.contentswrap01:last-child {
	padding: 0;
}
.contentswrap01:after {
	content: "";
	clear: both;
	display: block;
}
.contentswrap01 img {
	display: block;
	width: 100%;
	height: auto;
}
.contentsinner01 {
	width: 900px;
	margin: 0 auto;
    padding: 0 0 40px;
}
.contentsinner01:last-child {
	width: 900px;
	margin: 0 auto;
    padding: 0;
}
.contentsinner01:after {
	content: "";
	clear: both;
	display: block;
}
.contentsinner02 {
	width: 100%;
    padding: 0 0 60px;
}

.contentsbg01 {
    width: 100%;
    background: url("../common_img/contentsbg01_pc.png");
    background-repeat: no-repeat;
    background-position: center top;
}
.contentsbg02 {
    width: 100%;
    background: url("../common_img/contentsbg02_pc.png");
    background-repeat: no-repeat;
    background-position: center top;
}
.contentsgraybg01 {
    width: 100%;
    background: #f9f4eb;
    padding: 40px 0 30px;
}
@media screen and (max-width: 767px) {
.contentswrap01 {
	width: 100%;
	padding: 0 0 25px;
}
.contentswrap01:last-child {
	padding: 0;
}
.contentswrap01:after {
	content: "";
	clear: both;
	display: block;
}
.contentswrap01 img {
	display: block;
	width: 100%;
	height: auto;
}
.contentsinner01 {
	width: 90%;
	margin: 0 auto;
    padding: 0 0 30px;
}
.contentsinner01:last-child {
	width: 90%;
	margin: 0 auto;
    padding: 0;
}
.contentsinner01:after {
	content: "";
	clear: both;
	display: block;
}
.contentsinner02 {
	width: 90%;
	margin: 0 auto;
    padding: 0 0 30px;
}

.contentsbg01 {
    width: 100%;
    background: url("../common_img/contentsbg01_sp.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.contentsbg02 {
    width: 100%;
    background: url("../common_img/contentsbg02_sp.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.contentsgraybg01 {
    width: 100%;
    background: #f9f4eb;
    padding: 20px 0 10px;
}
}


/*---------------------------------
  タイトル（共通）
---------------------------------*/
.title01 {
	width: 98%;
	margin: 0 auto;
    padding: 0 0 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f94b5;
}
.title02 {
	width: 98%;
	margin: 0 auto 40px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    color: #231815;
}
.title03 {
	width: 98%;
	margin: 0 auto 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: #a10218;
}
.title04 {
	width: 98%;
	margin: 0 auto 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    color: #231815;
}
.title05 {
	width: 98%;
	margin: 0 auto;
    padding: 0 0 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #000000;
}
.title06 {
	width: 98%;
	margin: 0 auto 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: #0f94b5;
}
.reddot-text01 {
    background-image: radial-gradient(circle at center, #a10218 25%, transparent 25%); /* 点の色とサイズ調整 */
    background-position: top right; /* 点の位置 */
    background-repeat: repeat-x; /* 横方向に繰り返し */
    background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
    padding-top: .2em; /* 縦方向の位置調整 */
}
.bluedot-text01 {
    background-image: radial-gradient(circle at center, #0f94b5 25%, transparent 25%); /* 点の色とサイズ調整 */
    background-position: top right; /* 点の位置 */
    background-repeat: repeat-x; /* 横方向に繰り返し */
    background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
    padding-top: .2em; /* 縦方向の位置調整 */
}
@media screen and (max-width: 767px) {
.title01 {
	width: 100%;
	margin: 0 auto;
    padding: 0 0 20px;
    text-align: center;
    font-size: 5.333333333333334vw; /* 750px基準で40px */
    font-weight: 700;
    color: #0f94b5;
}
.title02 {
	width: 100%;
	margin: 0 auto 30px;
    text-align: center;
    font-size: 5.333333333333334vw; /* 750px基準で40px */
    font-weight: 400;
    color: #231815;
}
.title03 {
	width: 100%;
	margin: 0 auto 20px;
    text-align: center;
    font-size: 5.333333333333334vw; /* 750px基準で40px */
    font-weight: 900;
    color: #a10218;
}
.title04 {
	width: 100%;
	margin: 0 auto 10px;
    text-align: center;
    font-size: 5.333333333333334vw; /* 750px基準で40px */
    font-weight: 500;
    color: #231815;
}
.title05 {
	width: 100%;
	margin: 0 auto;
    padding: 0 0 20px;
    text-align: center;
    font-size: 5.333333333333334vw; /* 750px基準で40px */
    font-weight: 700;
    color: #000000;
}
.title06 {
	width: 100%;
	margin: 0 auto 20px;
    text-align: center;
    font-size: 5.333333333333334vw; /* 750px基準で40px */
    font-weight: 900;
    color: #0f94b5;
}
.reddot-text01 {
    background-image: radial-gradient(circle at center, #a10218 25%, transparent 25%); /* 点の色とサイズ調整 */
    background-position: top right; /* 点の位置 */
    background-repeat: repeat-x; /* 横方向に繰り返し */
    background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
    padding-top: .2em; /* 縦方向の位置調整 */
}
.bluedot-text01 {
    background-image: radial-gradient(circle at center, #0f94b5 25%, transparent 25%); /* 点の色とサイズ調整 */
    background-position: top right; /* 点の位置 */
    background-repeat: repeat-x; /* 横方向に繰り返し */
    background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
    padding-top: .2em; /* 縦方向の位置調整 */
}
}


/*---------------------------------
  サポートバナー
---------------------------------*/
.supportbannerwrap01 {
    width: 900px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
.supportbannerwrap01 {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0;
}
}


/*---------------------------------
  選ばれる3つの理由
---------------------------------*/
#pointwrap01 {
    display: flex;
    gap: 0 2%;
    font-size: 1.5rem;
    line-height: 180%;
}
.pointinner01 {
    width: 32%;
}
.pointinner01 ul {
    display: block;
}
.pointinner01 ul li {
    display: block;
    padding: 0 0 10px;
}
.pointinner01 ul li:last-child {
    padding: 0;
}
@media screen and (max-width: 767px) {
#pointwrap01 {
    display: block;
    gap: 0;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 180%;
}
.pointinner01 {
    width: 100%;
    padding: 0 0 20px;
}
.pointinner01:last-child {
    padding: 0;
}
.pointinner01 ul {
    display: block;
}
.pointinner01 ul li {
    display: block;
    padding: 0 0 10px;
}
.pointinner01 ul li:last-child {
    padding: 0;
}
}


/*---------------------------------
  こんなトコロもおまかせ
---------------------------------*/
#placewrap01 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
    font-size: 1.5rem;
    line-height: 180%;
}
#placewrap02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4%;
    font-size: 1.5rem;
    line-height: 180%;
}
.placeinner01 {
    width: 32%;
    padding: 0 0 20px;
}
.placeinner02 {
    width: 48%;
    padding: 0 0 20px;
}
.placeinner02 ul {
    display: block;
}
.placeinner02 ul li {
    display: block;
    padding: 0 0 10px;
}
.placeinner02 ul li:last-child {
    padding: 0;
}
@media screen and (max-width: 767px) {
#placewrap01 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 180%;
}
#placewrap02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 180%;
}
.placeinner01 {
    width: 48%;
    padding: 0 0 10px;
}
.placeinner01:last-child {
    padding: 0;
}
.placeinner02 {
    width: 100%;
    padding: 0 0 20px;
}
.placeinner02:last-child {
    padding: 0;
}
.placeinner02 ul {
    display: block;
}
.placeinner02 ul li {
    display: block;
    padding: 0 0 10px;
}
.placeinner02 ul li:last-child {
    padding: 0;
}
}


/*---------------------------------
  予約の流れ
---------------------------------*/
#flowwrap01 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
    font-size: 1.5rem;
    line-height: 180%;
}
.flowinner01 {
    width: 32%;
    padding: 0 0 20px;
}
.flowinner01 ul {
    position:relative;
    display: block;
    border-left: 2px solid #0f94b5;
    border-bottom: 2px solid #0f94b5;
    border-right: 2px solid #0f94b5;
}
.flowinner01 ul:after{
    border: solid transparent;
    content:'';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(15, 148, 181, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 14px;
    border-right-width: 14px;
    margin-top: -10px;
    border-left-color: #0f94b5;
    left: 100%;
    top: 50%;
}
.flowinner01:last-child ul:after{
    border: solid transparent;
    content:'';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(15, 148, 181, 0);
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    margin-top: -10px;
    border-left-color: #0f94b5;
    left: 100%;
    top: 50%;
}
.flowinner01 ul li {
    display: block;
    line-height: 140%;
}
.flowinner01 ul li:nth-child(1) {
    padding: 5px 10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background: #0f94b5;
    position: relative;
}
.flowinner01 ul li:nth-child(2) {
    padding: 10px;
}
.flowinner01 ul li img {
    width: 25px !important;
    height: auto;
    position: absolute;
    top: -8px;
    left: 0;
}
@media screen and (max-width: 767px) {
#flowwrap01 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 180%;
}
.flowinner01 {
    width: 100%;
    padding: 0 0 20px;
}
.flowinner01:last-child {
    padding: 0;
}
.flowinner01 ul {
    position:relative;
    display: block;
    border-left: 2px solid #0f94b5;
    border-bottom: 2px solid #0f94b5;
    border-right: 2px solid #0f94b5;
}
.flowinner01 ul:after{
    border: solid transparent;
    content:'';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(15, 148, 181, 0);
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-top: 0;
    margin-left: -10px;
    border-left-color: transparent;
    border-top-color: #0f94b5;
    left: 50%;
    top: 100%;
}
.flowinner01:last-child ul:after{
    border: solid transparent;
    content:'';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(15, 148, 181, 0);
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    margin-top: 0;
    margin-left: -10px;
    border-left-color: transparent;
    border-top-color: #0f94b5;
    left: 50%;
    top: 100%;
}
.flowinner01 ul li {
    display: block;
    line-height: 140%;
}
.flowinner01 ul li:nth-child(1) {
    padding: 5px 10px;
    font-size: 3.2vw; /* 750px基準で24px */
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background: #0f94b5;
    position: relative;
}
.flowinner01 ul li:nth-child(2) {
    padding: 10px;
}
.flowinner01 ul li img {
    width: 25px !important;
    height: auto;
    position: absolute;
    top: -8px;
    left: 0;
}
}


/*---------------------------------
  NEWS
---------------------------------*/
#newswrap01 {
    padding: 50px 0;
}
#newswrap02 {
    display: flex;
    gap: 0 2%;
    font-size: 1.5rem;
    line-height: 180%;
}
.newsinner01 {
    width: 32%;
}
.newsinner01 ul {
    display: block;
}
.newsinner01 ul li {
    width: 100%;
    padding: 0 0 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsinner01 ul li:last-child {
    padding: 0;
}
.newsinner01 ul li img {
    width: 100%;
    height: 160px;
    object-fit: cover !important;
}
@media screen and (max-width: 767px) {
#newswrap01 {
    padding: 30px 0;
}
#newswrap02 {
    display: flex;
    gap: 0 2%;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 140%;
}
.newsinner01 {
    width: 32%;
}
.newsinner01 ul {
    display: block;
}
.newsinner01 ul li {
    width: 100%;
    padding: 0 0 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsinner01 ul li:last-child {
    padding: 0;
}
.newsinner01 ul li img {
    width: 100%;
    height: 160px;
    object-fit: cover !important;
}
}


/*---------------------------------
  フッターバナー
---------------------------------*/
.footerbannerwrap01 {
	width: 900px;
	margin: 0 auto;
    padding: 0 0 40px;
}
.footerbannerwrap01:last-child {
	width: 900px;
	margin: 0 auto;
    padding: 0;
}
.footerbannerwrap01:after {
	content: "";
	clear: both;
	display: block;
}
p.footersmallbanner01 {
    width: 434px;
    float: left;
}
p.footersmallbanner01:nth-child(2) {
    float: right;
}
@media screen and (max-width: 767px) {
.footerbannerwrap01 {
	width: 90%;
	margin: 0 auto;
    padding: 0 0 20px;
}
.footerbannerwrap01:last-child {
	width: 90%;
	margin: 0 auto;
    padding: 0;
}
.footerbannerwrap01:after {
	content: "";
	clear: both;
	display: block;
}
p.footersmallbanner01 {
    width: 48%;
    float: left;
}
p.footersmallbanner01:nth-child(2) {
    float: right;
}
}


/*---------------------------------
  アコーディオン
---------------------------------*/
.name {
	background: #ffffff;
	position: relative;
	padding: 5px 10px;
	cursor: pointer;
}
.name ul {
    width: 100%;
    display: table;
}
.name ul li {
    display: table-cell;
    vertical-align: middle;
	font-size: 1.8rem;
	font-weight: 600;
	color: #0a1339;
    padding: 0;
}
.name ul li:nth-child(1) {
    width: 1.2em;
}
.name p.icon {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 43px;
	height: 43px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.name p.icon .arrowwrap {
    width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.name p.icon .arrowwrap .arrow img {
    width: 100%;
	transition: all 0.2s ease-in-out;
	/* 要素の動きを指定 */  
	display: block;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	/* transform: rotateで要素の角度を指定 */
	transform-origin:center center;
}
.name.open p.icon .arrowwrap .arrow img {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
	top: 40%;
	/*  .openクラスがついた時の要素の角度を指定 */
	transform-origin:center center;
}
.detail {
	padding: 20px 30px 0;
}

.faqdetailinner01 {
    display: table;
    width: 100%;
    padding: 0 0 20px;
}
.faqdetailinner01:last-child {
    padding: 0;
}
.faqdetailinner02 {
    display: table-cell;
    width: calc(100% - 3em);
}
.faqdetailinner02:nth-child(1) {
    width: 3em;
}
@media screen and (max-width: 767px) {
/*---------------------------------
  アコーディオン
---------------------------------*/
.name {
	background: #ffffff;
	position: relative;
	padding: 5px 2%;
	cursor: pointer;
}
.name ul {
    width: 100%;
    display: table;
}
.name ul li {
    display: table-cell;
    vertical-align: middle;
	font-size: 1.6rem;
	font-weight: 600;
	color: #0a1339;
    padding: 0;
}
.name ul li:nth-child(1) {
    width: 1.2em;
}
.name p.icon {
	position: absolute;
	right: 2%;
	top: 50%;
	width: 5%;
	height: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.name p.icon .arrowwrap {
    width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.name p.icon .arrowwrap .arrow img {
    width: 100%;
	transition: all 0.2s ease-in-out;
	/* 要素の動きを指定 */  
	display: block;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	/* transform: rotateで要素の角度を指定 */
	transform-origin:center center;
}
.name.open p.icon .arrowwrap .arrow img {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
	top: 40%;
	/*  .openクラスがついた時の要素の角度を指定 */
	transform-origin:center center;
}
.detail {
	padding: 20px 2% 0;
}

.faqdetailinner01 {
    display: table;
    width: 100%;
    padding: 0 0 20px;
}
.faqdetailinner01:last-child {
    padding: 0;
}
.faqdetailinner02 {
    display: table-cell;
    width: calc(100% - 3em);
}
.faqdetailinner02:nth-child(1) {
    width: 3em;
}
}


/*---------------------------------
  フッター
---------------------------------*/
#footer {
    width: 100%;
    padding: 50px 0;
    background: #000000;
    font-size: 1.6rem;
    line-height: 160%;
    color: #ffffff;
    text-align: center;
}
.footerinner {
    padding: 0 0 20px;
}
.footerinner:last-child {
    padding: 0;
}
.footerinner a.footerlogo {
    display: block;
    width: 227px;
    margin: 0 auto;
}
.footerinner ul {
    display: block;
}
.footerinner ul li.footerlist01 {
    display: block;
}
.footerinner ul li.footerlist01 p {
    display: inline-block;
    padding: 0 1.5em 0 0;
}
.footerinner ul li.footerlist01 p:last-child {
    padding: 0;
}
.footerinner ul.footerlink01 {
    display: table;
    margin: 0 auto;
}
.footerinner ul.footerlink01 li {
    display: table-cell;
}
.footerinner ul.footerlink01 li:after {
    content: "|";
    display: inline-block;
    padding: 0 1em;
}
.footerinner ul.footerlink01 li:last-child:after {
    content: "";
    display: inline-block;
    padding: 0;
}
.footerinner ul.footerlink01 li a:link {
    color: #ffffff !important;
}
.footerinner ul.footerlink01 li a:visited {
    color: #ffffff !important;
}
.footerinner ul.footerlink01 li a:hover {
    color: #c1272d !important;
}
@media screen and (max-width: 767px) {
#footer {
    width: 100%;
    padding: 30px 2%;
    background: #000000;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 140%;
    color: #ffffff;
    text-align: center;
}
.footerinner {
    padding: 0 0 20px;
}
.footerinner:last-child {
    padding: 0;
}
.footerinner a.footerlogo {
    display: block;
    width: 40%;
    margin: 0 auto;
}
.footerinner ul {
    display: block;
}
.footerinner ul li.footerlist01 {
    display: block;
}
.footerinner ul li.footerlist01 p {
    display: block;
    padding: 0;
}
.footerinner ul li.footerlist01 p:last-child {
    padding: 0;
}
.footerinner ul.footerlink01 {
    display: table;
    margin: 0 auto;
}
.footerinner ul.footerlink01 li {
    display: table-cell;
}
.footerinner ul.footerlink01 li:after {
    content: "|";
    display: inline-block;
    padding: 0 1em;
}
.footerinner ul.footerlink01 li:last-child:after {
    content: "";
    display: inline-block;
    padding: 0;
}
.footerinner ul.footerlink01 li a:link {
    color: #ffffff !important;
}
.footerinner ul.footerlink01 li a:visited {
    color: #ffffff !important;
}
.footerinner ul.footerlink01 li a:hover {
    color: #c1272d !important;
}
}


/*---------------------------------
  コピーライト
---------------------------------*/
#copyright {
	font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
#copyright {
	font-size: 2.1333333333333333vw; /* 750px基準で16px */
}
}


/*---------------------------------
  マーカー
---------------------------------*/
.underline01 {
	background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: -moz-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: -ms-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: -o-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-repeat: repeat-x;
	background-size: 200% 1.2em;
	background-position: 0 1.2em;
	transition: all 2.5s ease;
	padding: 0 0.3em;
	margin: 0 0.5em;
}
.underline01.active{
	background-position: -100% 1.2em;
}
@media screen and (max-width: 767px) {
.underline01 {
	background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: -moz-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: -ms-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: -o-linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-image: linear-gradient(left, transparent 50%, rgb(255, 243, 56) 50%);
	background-repeat: repeat-x;
	background-size: 200% 1.2em;
	background-position: 0 1.2em;
	transition: all 2.5s ease;
	padding: 0 0.3em;
	margin: 0 0.5em;
}
.underline01.active{
	background-position: -100% 1.2em;
}
}


/*---------------------------------
  お客様の声ページ
---------------------------------*/
.voicewrap01 {
    display: block;
    padding: 0 0 30px;
}
.voicewrap01:last-child {
    padding: 0;
}
.voicewrap01 ul {
    display: block;
}
.voicewrap01 ul li {
    display: block;
}
.voicewrap01 ul li:nth-child(1) {
    font-size: 2.0rem;
    font-weight: 600;
    color: #0f94b5;
}
@media screen and (max-width: 767px) {
.voicewrap01 {
    display: block;
    padding: 0 0 20px;
}
.voicewrap01:last-child {
    padding: 0;
}
.voicewrap01 ul {
    display: block;
}
.voicewrap01 ul li {
    display: block;
}
.voicewrap01 ul li:nth-child(1) {
    font-size: 4vw; /* 750px基準で30px */
    font-weight: 600;
    color: #0f94b5;
}
}


/*---------------------------------
  よくある質問
---------------------------------*/
.faqwrap01 {
    display: block;
    padding: 0 0 30px;
}
.faqwrap01:last-child {
    padding: 0;
}
.faqwrap01 ul {
    display: block;
}
.faqwrap01 ul li {
    display: block;
}
.faqwrap01 ul li:nth-child(1) {
    font-size: 2.0rem;
    font-weight: 600;
    color: #0f94b5;
}
.faqattention01 {
    font-size: 1.2rem;
    line-height: 140%;
}
@media screen and (max-width: 767px) {
.faqwrap01 {
    display: block;
    padding: 0 0 20px;
}
.faqwrap01:last-child {
    padding: 0;
}
.faqwrap01 ul {
    display: block;
}
.faqwrap01 ul li {
    display: block;
}
.faqwrap01 ul li:nth-child(1) {
    font-size: 4vw; /* 750px基準で30px */
    font-weight: 600;
    color: #0f94b5;
}
.faqattention01 {
    font-size: 2.1333333333333333vw; /* 750px基準で16px */
    line-height: 140%;
}
}


/*---------------------------------
  新着情報ページ（一覧）
---------------------------------*/
.newslistwrap01 {
    display: block;
    padding: 0 0 30px;
}
.newslistwrap01:last-child {
    padding: 0;
}
.newslistwrap02 {
    display: flex;
    gap: 0 2%;
}
.newslistinner01 {
    width: 290px;
    position: relative;
}
.newslistinner01:nth-child(2) {
    width: calc(100% - 290px - 2%);
    position: relative;
}
.newslistinner01 img {
    width: 100%;
    height: 190px;
    object-fit: cover !important;
}
.newslisttitlewrap01 {
    font-size: 2.0rem;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.newslistdetailwrap01 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-height: 160%;
}
.newslistdatewrap01 {
    position: absolute;
    bottom: 0;
}
.newspaginationwrap01 {
    display: block;
}
@media screen and (max-width: 767px) {
.newslistwrap01 {
    display: block;
    padding: 0 0 30px;
}
.newslistwrap01:last-child {
    padding: 0;
}
.newslistwrap02 {
    display: flex;
    gap: 0 2%;
}
.newslistinner01 {
    width: 48%;
    position: relative;
}
.newslistinner01:nth-child(2) {
    width: calc(100% - 48% - 2%);
    position: relative;
}
.newslistinner01 img {
    width: 100%;
    height: auto;
    object-fit: cover !important;
}
.newslisttitlewrap01 {
    font-size: 4vw; /* 750px基準で30px */
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.newslistdetailwrap01 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 140%;
}
.newslistdatewrap01 {
    position: absolute;
    bottom: 0;
}
.newspaginationwrap01 {
    display: block;
}
}


/*---------------------------------
  新着情報ページ（詳細）
---------------------------------*/
.newsdetailwrap01 {
    display: block;
    padding: 0 0 30px;
}
.newsdetailwrap01 img {
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
}
.newsdetailtitlewrap01 {
    font-size: 2.0rem;
    font-weight: 600;
    color: #ffffff;
    padding: 5px 10px;
    background: #8dab28;
    margin: 0 0 5px;
}
.newsdetaildatewrap01 {
    padding: 0 0 5px;
    text-align: right;
}
.newsdetailcontentswrap01 {
    display: block;
}
@media screen and (max-width: 767px) {
.newsdetailwrap01 {
    display: block;
    padding: 0 0 20px;
}
.newsdetailwrap01 img {
	width: auto !important;
	max-width: auto !important;
	height: auto !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: center !important;
}
.newsdetailtitlewrap01 {
    font-size: 2.0rem;
    font-weight: 600;
    color: #ffffff;
    padding: 5px 10px;
    background: #8dab28;
    margin: 0 0 5px;
}
.newsdetaildatewrap01 {
    padding: 0 0 5px;
    text-align: right;
}
.newsdetailcontentswrap01 {
    display: block;
}
}


/*---------------------------------
  会社概要ページ
---------------------------------*/
#companywrap01 {
    display: flex;
    gap: 0 8%;
    font-size: 1.5rem;
    line-height: 160%;
}
#companywrap02 {
    display: table;
    margin: 0 auto;
}
.companyinner01 {
    width: 44%;
}
.companyinner01 img:nth-child(1) {
    padding: 0 0 30px;
}
.companyinner01 ul {
    display: block;
    padding: 0 0 1em;
}
.companyinner01 ul:last-child {
    padding: 0;
}

.companyinner02 {
    display: table-cell;
    width: 52%;
    padding: 0 4% 0 0;
}
.companyinner02:nth-child(2) {
    width: calc(100% - 52% - 4%);
    padding: 0;
}
@media screen and (max-width: 767px) {
#companywrap01 {
    display: flex;
    gap: 0 2%;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 140%;
}
#companywrap02 {
    display: table;
    margin: 0 auto;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 140%;
}
.companyinner01 {
    width: 44%;
}
.companyinner01 img:nth-child(1) {
    padding: 0 0 20px;
}
.companyinner01 ul {
    display: block;
    padding: 0 0 0.5em;
}
.companyinner01 ul:last-child {
    padding: 0;
}

.companyinner02 {
    display: table-cell;
    width: 52%;
    padding: 0 4% 0 0;
}
.companyinner02:nth-child(2) {
    width: calc(100% - 52% - 4%);
    padding: 0;
}
}


/*---------------------------------
  外壁塗装・屋根塗装ページ
---------------------------------*/
.wallpaintingwrap01 {
    display: flex;
    gap: 0 6%;
    font-size: 1.5rem;
    line-height: 160%;
}
.wallpaintingwrap02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4%;
    font-size: 1.5rem;
    line-height: 180%;
}
.wallpaintinginner01 {
    width: 46%;
    line-height: 180%;
}
.wallpaintinginner02 {
    width: 48%;
    padding: 0 0 20px;
}
.wallpaintingpoint01 {
    padding: 0 0 17px;
}
.wallpaintingpoint01:last-child {
    padding: 0;
}
@media screen and (max-width: 767px) {
.wallpaintingwrap01 {
    display: block;
    gap: 0;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 140%;
}
.wallpaintingwrap02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4%;
    font-size: 2.666666666666667vw; /* 750px基準で20px */
    line-height: 180%;
}
.wallpaintinginner01 {
    width: 100%;
}
.wallpaintinginner02 {
    width: 48%;
    padding: 0 0 20px;
}
.wallpaintinginner02:last-child {
    padding: 0;
}
.wallpaintinginner01:nth-child(1) {
    width: 70%;
    margin: 0 auto 15px;
}
.wallpaintingpoint01 {
    padding: 0 0 10px;
}
.wallpaintingpoint01:last-child {
    padding: 0;
}
}


/*---------------------------------
  フォーム（共通）
---------------------------------*/
.formwrap01 {
    display: block;
    padding: 0 0 30px;
}
.formwrap01:last-child {
    padding: 0;
}
.formwrap01 ul {
    display: block;
}
.formwrap01 ul li {
    display: block;
}
.formwrap01 ul li:nth-child(1) {
    font-size: 2.0rem;
    font-weight: 600;
    color: #0f94b5;
}
.formwrap02 {
    display: block;
    padding: 0 0 30px;
}
.formwrap02:last-child {
    padding: 0;
}
.formwrap02 ul {
    display: block;
}
.formwrap02 ul li {
    display: block;
}
.formwrap02 ul li:nth-child(1) {
    font-size: 2.0rem;
    font-weight: 600;
    color: #db4e52;
}

.formdlbuttonwrap01 {
    display: table;
    margin: 0 auto;
    padding: 0 0 20px;
}
.formdlbuttoninner01 {
    display: table-cell;
    width: 50px;
    padding: 0 15px 0 0;
    vertical-align: middle;
}
.formdlbuttoninner01:nth-child(2) {
    width: 300px;
}

.formcontentswrap01 {
    width: 100%;
    display: table;
    padding: 0 0 10px;
}
.formcontentsinner01 {
    width: 200px;
    display: table-cell;
    position: relative;
    vertical-align: top;
    padding: 5px 0 0;
}
.formcontentsinner01:nth-child(2) {
    width: calc(100% - 200px - 20px);
    padding: 0 0 0 20px;
}

.requiredicon {
    padding: 2px 0.5em;
    font-size: 1.2rem;
    line-height: 100%;
    color: #ffffff;
    background: #c1272d;
    position: absolute;
    top: 13px;
    right: 0;
}
.w100 {
    width: 100%;
}

.formattentionwrap01 {
    width: 100%;
    padding: 20px 0 0;
}
.formattentionwrap01 a:link {
    text-decoration: underline !important;
}

.formbuttonwrap01 {
    width: 100%;
    padding: 20px 0 0;
}
@media screen and (max-width: 767px) {
.formwrap01 {
    display: block;
    padding: 0 0 20px;
}
.formwrap01:last-child {
    padding: 0;
}
.formwrap01 ul {
    display: block;
}
.formwrap01 ul li {
    display: block;
}
.formwrap01 ul li:nth-child(1) {
    font-size: 4vw; /* 750px基準で30px */
    font-weight: 600;
    color: #0f94b5;
}
.formwrap02 {
    display: block;
    padding: 0 0 20px;
}
.formwrap02:last-child {
    padding: 0;
}
.formwrap02 ul {
    display: block;
}
.formwrap02 ul li {
    display: block;
}
.formwrap02 ul li:nth-child(1) {
    font-size: 4vw; /* 750px基準で30px */
    font-weight: 600;
    color: #db4e52;
}

.formdlbuttonwrap01 {
    display: table;
    margin: 0 auto;
    padding: 0 0 20px;
}
.formdlbuttoninner01 {
    display: table-cell;
    width: 6.666666666666667vw; /* 750px基準で50px */
    padding: 0 10px 0 0;
    vertical-align: middle;
}
.formdlbuttoninner01:nth-child(2) {
    width: 40vw; /* 750px基準で300px */
}

.formcontentswrap01 {
    width: 100%;
    display: block;
    padding: 0 0 10px;
}
.formcontentsinner01 {
    width: 100%;
    display: block;
    position: relative;
    vertical-align: top;
    padding: 5px 0;
}
.formcontentsinner01:nth-child(2) {
    width: 100%;
    padding: 0;
}

.requiredicon {
    padding: 2px 0.5em;
    font-size: 1.2rem;
    line-height: 100%;
    color: #ffffff;
    background: #c1272d;
    position: absolute;
    top: 13px;
    right: 0;
}
.w100 {
    width: 100%;
}

.formattentionwrap01 {
    width: 100%;
    padding: 20px 0 0;
}

.formbuttonwrap01 {
    width: 100%;
    padding: 20px 0 0;
}
}


/* フォームのリセット解除 */
/* 基本 */
button,
input,
select,
textarea {
    -webkit-appearance: auto;
    appearance: auto;
    border-width: 1px;
    padding: 5px 0.5em;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
}
 
/* 選択系パーツ */
input[type="radio"],
input[type="checkbox"] {
    vertical-align: initial;
}
 
/* ボタン */
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background-color: #f0f0f0;
    font-size: 0.9em;
    padding: 0.2em 0.4em;
    border: solid 1px #666;
    border-radius: 3px;
}
 
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: #ddd;
    cursor: pointer;
}


/*---------------------------------
  モーダルウィンドウ（共通）
---------------------------------*/
/* これが無いとモーダルウィンドウ表示の際に余白が出る */
*{
	margin: 0;
	padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal {
	display: none;
	position: fixed;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 80001;
}

/* モーダル背景 */
.modal-bg {
	position: absolute;
	height: 100vh;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
}

/* モーダル本体 */
.modal-content {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    max-height: 65%;
    padding: 0;
    background: #FDF9E7;
	border-radius: 3.90625vw 0; /* 1280px基準でborder-radius: 50px 0; */
}

/* モーダルウィンドウ内容 */
.modal-detailwrap01 {
	position: relative;
}
.modal-detailbtninner01 {
	width: 1.7968749999999998vw; /* 1280px基準で23px */
	position: absolute;
	top: 1.171875vw; /* 1280px基準で15px */
	right: 1.171875vw; /* 1280px基準で15px */
}
.modal-detailinner01 {
	padding: 3.90625vw; /* 1280px基準でpadding: 50px; */
}
.modal-detailinner01 img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
.modal-content {
	width: 85%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); ;
	overflow-x: hidden;
	overflow-y: auto;
	height: auto;
	max-height: 50%;
	padding: 0;
    background: #FDF9E7;
    border-radius: 8.13953488372093vw 0; /* 430px基準でborder-radius: 35px 0; */
}

/* モーダルウィンドウ内容 */
.modal-detailwrap01 {
	position: relative;
}
.modal-detailbtninner01 {
	width: 3.488372093023256vw; /* 430px基準で15px */
	position: absolute;
	top: 3.488372093023256vw; /* 430px基準で15px */
	right: 3.488372093023256vw; /* 430px基準で15px */
}
.modal-detailinner01 {
	padding: 9.30232558139535 4.651162790697675vw; /* 430px基準でpadding: 40px 20px; */
}
.modal-detailinner01 img {
	width: 100%;
	height: auto;
}
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
.modal-content-inner {
	width: 100%;
	position: relative;
}

.js-modal-close-btn {
	z-index: 20;
}
.js-modal-close-btn img {
	width: 100%;
}
