/*
Theme Name: Lightning
Theme URI: https://lightning.nagoya
Description: Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files.
Author: Vektor,Inc.
Author URI: https://www.vektor-inc.co.jp
Version:6.13.3
Tags: two-columns, one-column, right-sidebar, custom-colors, custom-menu, editor-style, E-Commerce
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lightning

Lightning WordPress theme, Copyright (C) 2015-2018 Vektor,Inc.
Lightning WordPress theme is licensed under the GPL.
*/

@charset "UTF-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

img {
    width: 100%;
}

.page-header {
    display: none;
}

a:hover {
    text-decoration: none;
}

p {
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5em;
}

label {
    width: 100%;
}

.fontL {
	font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
	font-weight: 900;
	font-style: normal;
}

.font_maru {
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.font_maruL {
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.font_min {
	font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.fontR {
	color: #ED213A;
}

.container {
    display: none;
}

h1.entry-title {
    display: none;
}

.entry-footer {
    display: none;
}

div#comments {
    display: none;
}

.entry-meta {
  display: none;
}

ol.breadcrumb {
    display: none;
}

.post {
    margin: 100px auto 50px;
    max-width: 900px;
    width: 90%;
}

.c-btn {
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-btn::after {
  background: #93795f;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn:hover {
  color: #fff;
}
.c-btn:hover::after {
  transform: scale(1, 1);
}

.c-btn::after {
  transform: skewY(-10deg) scale(1, 0);
  height: 140px; /*ボタンの高さによって調整*/
}
.c-btn:hover::after {
  transform: skewY(-10deg) scale(1, 1);
}

.header {
  /* headerを画面上部に固定する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
	height: 70px;
  /* ロゴとナビゲーションを横並びにする */
  display: flex;
  justify-content: space-between;
  /* スクロールしても他のコンテンツの下にならないようにする */
  z-index: 10;
  /* 背景色を黒にする */
  background: #fff;
  /* headerに余白を作る */
  
  /* アニメーションの変化時間 */
  transition: 0.5s;
}

.header_menu {
    display: flex;
    width: 100%;
}

/* ロゴのデザイン */
.logo {
    transition: 0.5s;
    width: 270px;
    padding: 20px 15px 0;
    position: fixed;
}

/* ナビゲーションのリンクを横並びにする */
ul.menu_PC {
  display: flex;
  justify-content: center;
  align-items: center;
	margin: auto 5% auto auto;
}

li {
  list-style: none;
}

/* ナビゲーションのリンクのスタイル調整 */
.header_link {
  display: inline-block;
  margin: 0 15px;
  text-decoration: none;
  letter-spacing: 1px;
  /* アニメーションの変化時間 */
  transition: 0.3s;
	position: relative;
	padding-bottom: 5px;
}

.header_link::before {
	background: #00B4ED;
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.header_link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

p.menu_txt {
    font-size: 12pt;
}

/* スクロールするため高さを出すためのsection */

.section-a {
  background: #fff;
}

.section-b {
  background: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header.scroll-nav {
  /* 余白を狭くする */
  /* 背景を白にする */
  background: #fff;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.header.scroll-nav .logo,
.header.scroll-nav ul li a {
  color: #000;
}

/*header.scroll-nav .logo {
	width: 70px;
	height: 70px;
}*/

.header_menu {
    display: flex;
	z-index: 100;
}

.hamburger-menu {
    z-index: 101;
	display: none;
}

.menu-btn {
    position: fixed;
    top: 5px;
    right: 20px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background: #00B4ED;
    border-radius: 5px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
	margin-bottom: 25px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu_link {
    margin: 100px auto auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00B4ED;
    color: #fff;
    width: 600px;
    height: 100px;
    border-radius: 50px;
    font-size: 4vw;
}

a.menu_link_icon {
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
	margin: 15px;
	text-align: center;
}

a.menu_link_icon img {
    width: 50px;
    margin-bottom: 10px;
}

@media(max-width:1200px){
	
}

@media(max-width:1100px){
	ul.menu_PC {
    	display: none;
	}
	
	.hamburger-menu {
    	display: block;
	}
}

@media(max-width:960px){
	.header_side {
    	display: none;
	}
	
	
}

@media(max-width:600px){
	.header {
    height: 1px;
    padding-bottom: 70px;
    margin-bottom: 70px;
}
	
	.header_side {
    	display: none;
	}
	
	a.menu_link {
    	width: 300px;
    	height: 70px;
    	margin: 50px auto;
	}
	
	
}

.TOP01 {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

.TOP_img-01, 
.TOP_img-02, 
.TOP_img-03{
   position: absolute;
   top:0;
   right:0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
	background-position: right;
}

.TOP_img-01{
   background-image: url('https://gyosei-someday.com/wp-content/uploads/2025/07/32362509_m.jpg');
   animation: slide-animation-01 15s infinite;
}
.TOP_img-02{
   background-image: url('https://gyosei-someday.com/wp-content/uploads/2025/06/top_bk03.png');
   animation: slide-animation-02 15s infinite;
}
.TOP_img-03{
   background-image: url('https://gyosei-someday.com/wp-content/uploads/2025/06/bkhouse.png');
   animation: slide-animation-03 15s infinite;
}
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}


.TOP01_txt {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    top: 0;
    left: 5%;
    margin: auto;
    padding: 25px 40px;
    display: inline-table;
    font-size: 21pt;
}

.TOP01_txt p {
    line-height: 2em;
}

.TOP02 {
    padding-bottom: 75px;
    margin: 100px auto 0;
    max-width: 1000px;
    width: 90%;
}

.TOP02_txt01 {
    margin: 150px auto;
    max-width: 1000px;
    width: 90%;
}

.TOP02_txt01_01 {
    font-size: 24pt;
}

.TOP02_txt01_02 {
    margin: 50px 0 auto;
}

.TOP02_txt01_02 p {
    line-height: 24pt;
}

.TOP02_txt01_03 {
    text-align: end;
    font-size: 15pt;
    margin-top: 24px;
}

.TOP02_box {
    display: flex;
	justify-content: space-between;
    margin: 50px auto;
}

p.TOP02_txt02 {
    font-size: 27pt;
}

.TOP02_box img {
    width: 500px;
    height: fit-content;
}

p.TOP02_txt03 {
    font-size: 12pt;
    padding-right: 50px;
	line-height: 1.7;
}

.TOP02_box02 {
    max-width: 600px;
}

.TOP03_boxA,
.TOP03_boxB {
    display: flex;
    justify-content: center;
	padding: 90px 0;
}

.TOP03_boxA {
	background: #EEF7FD;
}

.TOP03_img01,
.TOP03_img02 {
	width: 500px;
	height: 300px;
	border-radius: 10px;
	margin: auto 60px;
	background-position: center;
	background-size: cover;
}

.TOP03_img01 {
	background-image: url("https://gyosei-someday.com/wp-content/uploads/2025/07/someday_work.png");
}

.TOP03_img02 {
	background-image: url("https://gyosei-someday.com/wp-content/uploads/2025/06/jimusho-3.png");
}

.TOP03_boxA img {
    width: 500px;
    height: auto;
}

.TOP03_txt {
    width: 390px;
	margin: 0 60px;
}

p.TOP03_txt01 {
    font-size: 30pt;
}

p.TOP03_txt02 {
    font-size: 12pt;
    margin-top: 25px;
}

.TOP04 {
    padding: 50px 0;
	display: flex;
	flex-direction: column;
}

.TOP04_title {
    margin: auto;
}

.TOP04_title p {
    border: 1px solid #000;
    padding: 15px 50px;
    display: inline-block;
	font-size: 21pt;
}

ul.display-posts-listing {
    margin: 50px auto;
	max-width: 650px;
    width: 90%;
}

li.listing-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.footer_line {
    border-top: 2px solid #717071;
}

.footer {
    padding-top: 50px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 900px;
    margin: auto;
}

.footer01 {
    width: 420px;
    height: 280px;
}

.footer01 iframe {
    width: 100%;
    height: 100%;
}

.footer02 {
    width: 300px;
}

.footer02 img {
    width: 200px;
	margin-bottom: 25px;
}

.footer_link {
    display: flex;
    flex-wrap: wrap;
	margin-top: 25px;
}

.footer_link a {
    margin-right: 35px;
	margin-bottom: 20px;
}

.footer03 {
    margin: auto;
    display: flex;
    justify-content: center;
}

.footer03 img {
    width: 250px;
    padding: 50px 0;
}

@media(max-width:960px){
	.TOP_img-01 {
		background-image: url(https://gyosei-someday.com/wp-content/uploads/2025/07/32362509_m.jpg);
	}
	.TOP_img-02 {
		background-image: url(https://gyosei-someday.com/wp-content/uploads/2025/06/sp_top_bk03.png);
	}
	.TOP_img-03 {
		background-image: url(https://gyosei-someday.com/wp-content/uploads/2025/06/sp_top_bk04.png);
	}
	
	.TOP01_txt {
    	font-size: 18pt;
    	bottom: 50px;
    	top: auto;
	}
	
	.TOP02 {
    	margin-top: 50px;
	}
	
	.TOP02_txt01 {
    	font-size: 18pt;
	}
	
	.TOP02_box {
    	flex-direction: column;
	}
	
	p.TOP02_txt02 {
    	font-size: 24pt;
	}
	
	p.TOP02_txt03 {
    	width: 100%;
		margin: 25px auto;
        padding: 0;
	}
	
	.TOP02_box02 {
    	margin: 50px auto 0;
	}
	
	.TOP03_boxA {
    	flex-direction: column-reverse;
	}
	
	.TOP03_boxB {
    	flex-direction: column;
	}
	
	.TOP03_img01, 
	.TOP03_img02 {
    	width: 90%;
    	margin: auto;
	}
	
	.TOP03_boxA img {
		width: 90%;
		margin: auto;
	}
	
	.TOP03_txt {
    	width: 90%;
    	margin: 0 auto 50px;
	}
	
	.footer {
    	flex-direction: column;
    	width: 90%;
	}
	
	.footer01 {
    	width: 100%;
	}
	
	.footer02 {
    	width: 100%;
    	margin: 50px 0 0;
    	display: flex;
	}
	
	.fotter02_box {
    	width: 50%;
	}
	
	.footer_link {
    	width: 50%;
    	margin: 0;
	}
	
	.footer03 img {
    	width: 200px;
    	padding: 30px 0;
	}
}

@media(max-width:600px){
	.logo {
    	width: 200px;
	}
	
	.TOP_img-01, 
.TOP_img-02, 
.TOP_img-03{
		background-position: center;
	}
	
	.TOP01_txt {
    	font-size: 12pt;
    	writing-mode: tb;
		padding: 25px;
	}
	
	.TOP02_txt01 {
    	font-size: 14pt;
	}
	
	.TOP02_box02 {
    	width: 100%;
	}
	
	p.TOP02_txt02 {
    	font-size: 18pt;
	}
	
	p.TOP03_txt01 {
    	font-size: 18pt;
	}
	
	.TOP03_boxA, 
	.TOP03_boxB {
    	padding: 50px 0;
	}
	
	.footer02 {
    	flex-direction: column;
	}
	
	.fotter02_box {
    	width: 100%;
	}
	
	.footer_link {
    	width: 100%;
    	margin: 25px 0 0;
	}
}





.under_title {
    width: 100vw;
    height: 75px;
    background: #87D0F4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    color: #fff;
    font-size: 18pt;
}

@media(max-width:600px){
	.under_title {
    	height: 60px;
    	font-size: 15pt;
		margin-top: 75px;
	}
}

div#post-41 {
    margin-top: 75px;
}




.intro01 {
    width: 900px;
    margin: 50px auto;
    display: flex;
    justify-content: left;
}

.intro01_img {
	width: 260px;
	height: 330px;
	background-image: url("https://gyosei-someday.com/wp-content/uploads/2025/05/IMG_4700.jpg");
	background-position: center;
	background-size: cover;
	margin-bottom: 25px;
}

.intro01_L {
    margin-right: 50px;
	width: 260px;
    font-size: 10pt;
}

.intro01_L p {
    font-weight: 600;
}

.intro01_box {
    margin-bottom: 50px;
}

.intro01_title {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
    border: 1px solid #000;
    margin-bottom: 25px;
	font-size: 18pt;
}

table.intro_table {
	width: 100%;
    border-top: 1px solid #ccc;
    border-collapse: collapse;
}

tr.intro_tr {
    border-bottom: 1px solid #ccc;
}

td.intro_td,
td.intro_td_2 {
    text-align: center;
    padding: 5px 10px;
    align-content: center;
    background: #eee;
    font-size: 10pt;
}

td.intro_td_2 {
	border-right: 1px solid #ccc;
}

th.intro_th {
    padding: 5px 10px;
    font-size: 10pt;
}

.intro01_txt {
    display: flex;
}

.intro01_txt p {
    margin-right: 15px;
	line-height: 1.5em;
}

@media(max-width:900px){
	.intro01 {
    	width: 600px;
	}
	
	.intro01_img {
    	width: 210px;
    	height: 270px;
	}
	
	.intro01_L p {
    	font-size: 10pt;
	}
	
	.intro01_title {
    	font-size: 15pt;
	}
	
	.intro01_txt {
    	font-size: 11pt;
	}
}

@media(max-width:600px){
	.intro01 {
    	flex-direction: column;
		width: 90%;
	}
	
	.intro01_box {
    	margin-bottom: 50px;
    	display: flex;
    	flex-direction: column;
    	align-items: center;
	}
	
	.intro01_L {
    	margin: auto;
    	position: relative;
		width: 100%;
		padding-bottom:20px;
	}
	
	.intro01_img {
    	width: 100%;
    	height: auto;
    	aspect-ratio: 3 / 4;
	}
	
	.intro01_L p {
    	position: absolute;
    	bottom: 10px;
    	left: 10px;
    	font-size: 10pt;
    	padding: 10px;
    	margin-bottom: 25px;
    	background-color: rgba(255, 255, 255, 0.8);
	}
	
	.intro01_txt {
    	font-size: 10pt;
	}
	
	.txtC {
		text-align: center;
	}
}





.con01 {
        margin: 75px auto 100px;
    width: 540px;
    height: auto;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
}

p.con01_txt01 {
    font-size: 15pt;
    border-bottom: 2px solid #000;
}

.con01_02 {
   margin-top: 40px;
	display: flex;
    width: 90%;
}

.con01_box {
    width: 50%;
}

.con01_02 a {
    margin-bottom: 10px;
    display: table;
    position: relative;
    padding-bottom: 5px;
}

.con01_02 a::before {
	background: #000;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.con01_02 a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.con02 {
    width: 900px;
   margin: -25px auto 0;
    padding-top: 75px;
}

.con_title {
    border: 1px solid #000;
    padding: 15px 50px;
    display: inline-block;
    margin-bottom: 50px;
}

p.con02_txt {
    font-size: 15pt;
    font-weight: 600;
	margin-bottom: 10px;
}

ul.con02_list {
	margin-left: 15px;
	margin-bottom: 35px;
}

li.list_A {
    list-style-type: disclosure-open;
	margin-bottom: 5px;
}

li.list_B {
    list-style-type: disc;
	margin-bottom: 0px;
}

li.list_C {
    list-style-type: circle;
	margin-bottom: 0px;
}

p.con02_txt02 {
    margin-top: -35px;
    margin-bottom: 35px;
}

.con_line {
    max-width: 900px;
    width: 90%;
    margin: auto;
    background-image: linear-gradient(to right, #C8C9CA 25px, transparent 2px);
    background-size: 50px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
    height: 2px;
}

@media(max-width:960px){
	.con01 {
    	width: 570px;
	}
	
	.con01_02 {
    	width: 90%;
	}
	
	.con02 {
    	width: 90%;
	}
	
	.con02_imgA,
	.con02_imgB,
	.con02_imgC {
    	height: auto;
    	aspect-ratio: 1.6 / 1;
	}
	
	.con02_imgA,
	.con02_imgC {
		width: 60%;
	}
	
	.con02_txtA {
    	width: 35%;
	}
	
	.con02_imgB {
    	width: 50%;
	}
	
	.con02_txtB {
    	width: 40%;
	}
}

@media(max-width:600px){
	.con01 {
    	width: 90%;
    	height: auto;
    	padding: 25px 0;
	}
	
	p.con01_txt01 {
    	font-size: 12pt;
	}
	
	.con01_01 {
    	flex-direction: column;
		font-size: 10pt;
	}
	
	.con_title {
    	padding: 10px 15px;
		margin-bottom: 25px;
	}
	
	.con01_02 {
    	display: flex;
        flex-wrap: wrap;
	}
	
	.con01_box {
    	min-width: 200px;
		margin: 0 auto;
	}
	
	.con02_boxA {
    	flex-direction: column;
	}
	
	.con02_boxB {
		flex-direction: column-reverse;
	}
	
	.con02_txtA,
	.con02_txtB {
    	width: 100%;
    	margin-bottom: 35px;
	}
	
	.con02_imgA,
	.con02_imgB,
	.con02_imgC {
    	width: 100%;
	}
}






.price_txt {
    max-width: 900px;
    width: 90%;
    margin: 50px auto 0;
}

.price01 {
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
	overflow-y: scroll;
}

.price_title {
    border: 1px solid #000;
    padding: 10px 60px;
	margin-bottom: 25px;
    display: inline-block;
    font-size: 15pt;
}

.price_block01 {
    display: flex;
    width: 100%;
    margin-bottom: 35px;
	align-items: center;
}

.price_blockL {
    width: 75px;
    font-size: 15pt;
}

.price_blockR {
    width: 800px;
    border-left: 2px solid #ccc;
    padding-left: 15px;
}

p.price_title02 {
    text-underline-offset: 5px;
    text-decoration: underline;
    margin-bottom: 10px;
    font-size: 15pt;
}

.price_blockR p {
    margin-bottom: 15px;
}

table.price_table {
    max-width: 100%;
    margin-bottom: 50px;
    overflow-x: scroll;
    min-width: 600px;
    width: 100%;
}

td.price_td {
    background: #56CCF2;
    padding: 2px 5px;
    color: #fff;
}

th.price_th {
    border: 0.5px solid #999;
    padding: 2px 5px;
	min-width: 120px;
	align-content: center;
}

a.price_link {
    display: flex;
    width: 420px;
    height: 60px;
    background: #00B4ED;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 18pt;
    margin: 100px auto;
	box-shadow: 0 4px 0 #1488CC;
	transition: .3s;
}

a.price_link:hover {
  transform: translateY(4px);
  box-shadow: none;
}

a.price_link img {
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

@media(max-width:600px){
	.price_txt {
    	font-size: 10pt;
	}
	
	.price01 {
    	font-size: 10pt;
	}
	
	.price_title {
    	font-size: 12pt;
    	padding: 10px 45px;
	}
	
	a.price_link {
    	width: 300px;
    	height: 50px;
    	font-size: 15pt;
	}
}





.req01 {
    max-width: 900px;
    width: 90%;
    margin: 100px auto 75px;
}

p.req01_txt02 {
    margin: auto;
    display: table;
}

p.req01_txt01 {
    font-size: 24pt;
    margin-bottom: 25px;
}

.req02 {
    max-width: 900px;
    width: 90%;
    margin: auto;
}

.req02_box {
    padding: 15px 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0.7px solid #717071;
}

p.req02_txt1 {
    font-size: 18pt;
	margin-bottom: 5px;
}

.req_line {
    border-bottom: 0.5px solid #C2C3C3;
    max-width: 600px;
    width: 90%;
}

p.req02_txt2 {
    margin-top: 10px;
}

.req_arrow {
	width: 30px;
	height: 30px;
	clip-path: polygon(0 50%, 50% 100%, 100% 50%);
	margin: 10px auto 25px;
    background: #C2C3C3;
}

@media(max-width:900px){
	.req01 {
    	flex-direction: column-reverse;
	}
	
	.req01_txt {
    	width: 100%;
    	margin-bottom: 25px;
	}
	
	p.req01_txt01 {
    	font-size: 21pt;
	}
	
	.break {
		display: none;
	}
	
	.req01_img {
    	width: 100%;
    	height: auto;
    	aspect-ratio: 16 / 9;
	}
	
	.req02_box {
    	padding: 15px 30px;
	}
}

@media(max-width:600px){
	p.req01_txt01 {
    	font-size: 18pt;
	}
	
	p.req01_txt02 {
    	font-size: 10pt;
	}
	
	.req02_box {
    	padding: 10px 25px;
	}
	
	p.req02_txt1 {
    	font-size: 15pt;
	}
	
	p.req02_txt2 {
    	font-size: 10pt;
	}
}





.QA01 {
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
}

.QA02,
.QA03 {
    display: flex;
	align-items: center;
}

.QA02 {
	margin-bottom: 15px;
}

.QA03 {
    margin-bottom: 35px;
}

.QA02_title,
.QA03_title {
    min-width: 35px;
    height: 35px;
    font-size: 15pt;
    color: #fff;
    background: #91CA90;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
	margin-right: 15px;
}

.QA02_title {
    background: #91CA90;
}

.QA03_title {
    background: #00B4ED;
}

@media(max-width:600px){
	.QA02_title, 
	.QA03_title {
    	font-size: 12pt;
    	min-width: 30px;
    	height: 30px;
	}
	
	.QA02_txt {
    	font-size: 10pt;
	}
}

.contact {
    max-width: 650px;
    width: 90%;
    margin: 100px auto;
}

.from_name {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* 右寄せではなく、両端に寄せる */
	align-items: end;
}

.item-box {
  flex-basis: calc(50% - 20px); /* flex-basisプロパティを使用して、均等に配置 */
  margin: 0 5px; /* 余白幅を半分にする */
  box-sizing: border-box;
}

/* 最初の.item-box要素を左寄せに配置 */
.item-box:first-child {
  margin-left: 0;
}

/* スマホの場合 */
@media screen and (max-width: 480px) {
  .from_name {
    flex-direction: column;
  }

  .item-box {
    flex-basis: 100%;
    margin: 0;
  }
}

.private {
    max-width: 650px;
    width: 90%;
    margin: 100px auto -50px;
    text-decoration: underline;
}



.item-box {
    width: 100%;
}