@charset "UTF-8";
/*
Theme Name: asahi syaryo
*/

/*-----------------------------------------
default
-----------------------------------------*/
*{ margin:0; padding:0; -webkit-font-smoothing: antialiased; }
@font-face{
	font-family:"Yu Gothic M";
	src:local("Yu Gothic Medium");
}
@font-face{
	font-family:"Yu Gothic M";
	src:local("Yu Gothic Bold");
	font-weight: bold;
}
html{
	/*-----------------------------------------
	ゴシック主体の場合
	-----------------------------------------*/
	font-family: "Zen Kaku Gothic New","Noto Sans JP","kozuka-gothic-pr6n", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	/*-----------------------------------------
	明朝体主体の場合
	-----------------------------------------*/
	/*
	font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", Georgia, Times, "Times New Roman", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	*/
	color:#2b385d;
	font-size:14px;
    background: #f2f3f6;
}
a{
	transition:0.1s linear all;	
	color:#005baa;
	text-decoration:none;
}
a:hover{
	text-decoration:none;
    opacity: 0.8;	
}
li{
	list-style-type:none;	
}
p,th,td,li,dt,dd{
	line-height:1.8em;	
}
img{
	border:none !important;	
}

/* 文字サイズ */
.size14 {
    font-size: 14px;
}
.size15 {
    font-size: 15px;
}
.size16 {
    font-size: 16px;
}
.size17 {
    font-size: 17px;
}
.size18 {
    font-size: 18px;
}
.size21 {
    font-size: 21px;
}
.size22 {
    font-size: 22px;
}
.size23 {
    font-size: 23px;
}
.size29 {
    font-size: 29px;
}
.size33 {
    font-size: 33px;
}
.size39 {
    font-size: 39px;
}
.size42 {
    font-size: 42px;
}
.size65 {
    font-size: 65px;
}


/* 文字装飾 */
.mincho {
  font-family: "Noto Serif JP","Shippori Mincho", serif;
  font-weight: 200;
  font-style: normal;
}
.outfit {
	font-family: "Outfit", sans-serif;
	font-style: normal;
}
.meiryo {
    font-family: Meiryo;
	font-style: normal;
}

.thin{ font-weight:100; }
.light{ font-weight:300; }
.regular{ font-weight:400; }
.medium{ font-weight:500; }
.semibold{ font-weight:600; }
.bold{ font-weight:700; }
.bolder{ font-weight:900; }

.left{ text-align:left; }
.center{ text-align:center; }
.right{ text-align:right; }

.white{ color:white !important; }
.blue{ color: #005baa !important; }
.navy{ color: #24387b !important; }
.purple{ color: #7d8aff !important; }
.black{ color: #442c16 !important; }

.bg_blue {background: #005baa;}
.bg_purple {background: #7d8aff;}

/* scroll-effect */
.effect-fade{
	opacity:0;
	transform:translate(0,60px);
	transition:all 1000ms;
}
.effect-fade.effect-scroll {
	opacity:1;
	transform:translate(0, 0);
}
/* road-effect */
.road-effect-fade{
	opacity:0;
	transform:translate(0,60px);
	transition:all 1000ms;
}
.road-effect-fade.effect-road {
	opacity:1;
	transform:translate(0, 0);
}
.lefteffect{
	transform:translateX(-15%);
	opacity:0;
	transition:opacity 1000ms,transform 1000ms;
}
.righteffect{
	transform:translateX(15%);
	opacity:0;
	transition:opacity 1000ms,transform 1000ms;
}
.fadein{
	opacity:0;
	transform:translate(0, 0);
}
:root {
    --delay: 3;
}
.delay {
   transition-delay: calc(var(--delay) * 1s);
}



/*-----------------------------------------
header
-----------------------------------------*/
header {
    position: fixed;
    width: 100%;
    z-index: 999;
}
header .header_inner {
    width: 1100px;
    max-width: 96%;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
header .header_inner .logo {
    width: 200px;
    margin: 18px 0 7px;
}
header .header_inner nav ul {
    display: flex;
    align-items: flex-end;
}
header .header_inner nav ul li {
    text-align: center;
}
header .header_inner nav ul li a {
    color: #fff;
    padding: 12px;
    display: block;
    letter-spacing: 2px;
    font-weight: 600;
}
header .header_inner nav ul li.contact {
    line-height: 1.4;
}
header .header_inner nav ul li.contact a {
    margin-left: 20px;
    background: linear-gradient(0deg, #b99eff, #7d8aff);
    font-size: 15px;
    padding: 12px 17px;
}
header .header_inner nav ul li.contact a img {
    width: 22px;
}

h1 {
    padding: 90px 0 30px;
    line-height: 1.4;
}

/*-----------------------------------------
main
-----------------------------------------*/
main > .sp {
    width: 100%;
}
.mainimg {
}
.slick-slide {
	height: auto !important;
}

.arrow_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
    position: absolute;
    width: 550px;
    max-width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:15px;
    height:15px;
    border-right: 1px solid #808ea5;
    border-top: 1px solid #808ea5;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

section {
}

/* message */
#message {
    padding-bottom: 80px;
    margin-top: -100px;
    padding-top: 100px;
}
#message .section_inner {
    position: relative;
    width: 960px;
    max-width: 96%;
    margin: -65px auto 0;
    padding: 50px;
    background: #fff;
    box-shadow: 5px 5px 10px #9f9f9f;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
#message .section_inner .section_inner_L {
    width: calc(100% - 270px);
}
#message .section_inner .section_inner_R {
    width: 250px;
}
#message .section_inner .section_inner_R img {
    max-width: 100%;
    height: auto;
}
#message .section_inner h2 {
    line-height: 1.4;
    margin-bottom: 17px;
}

/* outline */
#outline {
    background: url(img/bg_outline.jpg) top center no-repeat;
    background-size: cover;
    padding: 50px 0 80px;
}
#outline h2 {
    line-height: 1.4;
    margin-bottom: 60px;
}
#outline .section_inner {
    width: 1040px;
    max-width: 96%;
    margin: auto;
    position: relative;
}
#outline .section_inner .outline_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 180px;
}
#outline .section_inner .outline_box .cycle {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    text-align: center;
}
#outline .section_inner .outline_box .frame {
    position: relative;
    width: 300px;
    max-width: calc(50% - 90px);
    background: #fff;
    box-sizing: border-box;
    padding: 24px;
}
#outline .section_inner .outline_box .frame:nth-child(4) {
    order:4
}
#outline .section_inner .outline_box .frame:nth-child(5) {
    order:3
}
#outline .section_inner .outline_box .frame:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #808ea5;
    padding: 20px 0;
    position: absolute;
    top: -20px;
    left: 0;
}
#outline .section_inner .outline_box .frame:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #808ea5;
    padding: 20px 0;
    position: absolute;
    top: -20px;
    right: 0;
}
#outline .section_inner .outline_box .frame .frame_inner:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #808ea5;
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: -20px;
}
#outline .section_inner .outline_box .frame .frame_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #808ea5;
    padding: 0 20px;
    position: absolute;
    bottom: 0;
    left: -20px;
}
#outline .section_inner .outline_box .frame .frame_inner img {
    display: block;
    margin: auto;
}
#outline .section_inner .outline_box .frame:nth-child(2) .frame_inner .num,
#outline .section_inner .outline_box .frame:nth-child(5) .frame_inner .num {
    position: absolute;
    top: -33px;
    left: -33px;
    z-index: 1;
}
#outline .section_inner .outline_box .frame:nth-child(3) .frame_inner .num,
#outline .section_inner .outline_box .frame:nth-child(4) .frame_inner .num {
    position: absolute;
    top: -33px;
    right: -33px;
    z-index: 1;
}
#outline .section_inner .outline_box .frame .frame_inner h3 {
    margin: 30px 0 20px;
}
#outline .section_inner .outline_box .frame .frame_inner p {
    line-height: 1.8;
}
#outline .section_inner .arrow {
    margin-top: -50px;
    position: relative;
    z-index: -1;
}
#outline .section_inner .result_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}
#outline .section_inner .result_box .center {
    width: 100%;
    margin: 20px 0;
    letter-spacing: 5px;
}
#outline .section_inner .result_box .frame {
    position: relative;
    width: calc(25% - 30px);
    background: linear-gradient(0deg, #b99eff, #7d8aff);
    box-sizing: border-box;
    padding: 30px;
}
#outline .section_inner .result_box .frame:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #808ea5;
    padding: 15px 0;
    position: absolute;
    top: -15px;
    left: 0;
}
#outline .section_inner .result_box .frame:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #808ea5;
    padding: 15px 0;
    position: absolute;
    top: -15px;
    right: 0;
}
#outline .section_inner .result_box .frame .frame_inner:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #808ea5;
    padding: 0 15px;
    position: absolute;
    top: 0;
    left: -15px;
}
#outline .section_inner .result_box .frame .frame_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #808ea5;
    padding: 0 15px;
    position: absolute;
    bottom: 0;
    left: -15px;
}

/* business */
#business {
    background: url(img/bg_business.jpg) top center no-repeat;
    background-size: cover;
    padding: 80px 0 80px;
}
#business h2 {
    line-height: 1.4;
}
#business .section_inner {
    width: 1100px;
    max-width: 96%;
    margin: 60px auto 0;
    padding: 50px;
    padding-right: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
#business .section_inner:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #2b385d;
    padding: 20px 0 0;
    position: absolute;
    top: -20px;
    left: 0;
}
#business .section_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #2b385d;
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: -20px;
}
#business .section_inner .section_inner_L,
#business .section_inner .section_inner_R{
    width: calc(50% - 30px);
    position: relative;
}
#business .section_inner .section_inner_L img{
    position: absolute;
    top: -80px;
    left: -80px;
    z-index: 1;
    width: calc(100% + 80px);
}
#business .section_inner .section_inner_R h3 {
    margin: 30px 0 20px;
}
#business .section_inner .section_inner_R p {
    margin-bottom: 20px;
}
#business .section_inner .section_inner_R img {
    width: 100%;
    height: auto;
}
#business .section_inner .business_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0 0;
}
#business .section_inner .business_box .business_box_inner {
    width: calc((100% - 80px) / 3);
}
#business .section_inner .business_box .business_box_inner h4 {
    margin-bottom: 20px;
}
#business .section_inner .business_box .business_box_inner p {
    margin-bottom: 15px;
    line-height: 1.4;
}
#business .section_inner .business_box .business_box_inner img {
    width: 100%;
    height: auto;
}

/* works */
#works {
    margin-top: -60px;
    padding-top: 60px;
}
#works h2 {
    line-height: 1.4;
    padding: 60px 0;
}
#works .bg_blue {
    padding: 35px 0;
    line-height: 1.4;
    letter-spacing: 2px;
}
#works .section_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 60px;
    counter-reset: work-counter;
}
#works .section_inner .section_inner_L {
    width: 50%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#works .section_inner .section_inner_R {
    width: 50%;
    order: 2;
    display: flex;
    align-items: center;
}
#works .section_inner .section_inner_L > div {
    width: 550px;
    max-width: 100%;
    float: right;
}
#works .section_inner .section_inner_R > div {
    width: 550px;
    max-width: 100%;
    position: relative;
}
#works .section_inner .section_inner_L > div img,
#works .section_inner .section_inner_R > div img {
    max-width: 100%;
}
#works .section_inner > div:nth-child(2) > div {
    padding: 25px 55px;
    box-sizing: border-box;
}
#works .section_inner > div:nth-child(1) {
    background: #fff;
    text-align: left;
    position: relative;
}
#works .section_inner > div:nth-child(2) {
    background: url(img/bg_works.jpg) top center no-repeat;
    background-size: cover;
    text-align: left;
    position: relative;
}
#works .section_inner .section_inner_L:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #2b385d;
    padding: 20px 0;
    position: absolute;
    top: -20px;
    right: 0;
}
#works .section_inner .section_inner_R:after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #2b385d;
    position: absolute;
    bottom: 0;
    left: -20px;
}
#works .section_inner .section_inner_R:before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #2b385d;
    position: absolute;
    top: 0;
    left: -20px;
}
#works .section_inner h3 {
    margin-bottom: 20px;
}
#works .section_inner p {
    margin-bottom: 20px;
}
#works .section_inner .point {
    display: inline-block;
    background: linear-gradient(0deg, #b99eff, #7d8aff);
    padding: 5px 15px;
    margin-bottom: 10px;
    border-radius: 15px;
}
#works .section_inner ul {
}
#works .section_inner ul li {
    position: relative;
    padding-left: 1.4em;
    color: #fff;
}
#works .section_inner ul li::before {
    content: "●";
    position: absolute;
    top:0;
    left: 0;
}
#works .section_inner dl {
    color: #fff;
    margin-bottom: 5px;
}
#works .section_inner dl dt {
    position: relative;
    padding-left: 1.5em;
    counter-increment: work-counter;
}
#works .section_inner dl dt::before {
    content: counter(work-counter);
    position: absolute;
    top: 5px;
    left: 0;
    color: #005baa;
    background: #7d8aff;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
#works .other_works {
    margin-top: -60px;
    padding: 60px 0;
}
#works .other_works .other_works_inner {
    width: 1100px;
    max-width: 96%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0 60px;
}
#works .other_works .other_works_inner h3 {
    width: 100%;
    padding: 5px 10px;
    margin-bottom: 40px;
}
#works .other_works .other_works_inner .works_box {
    width: 25%;
}
#works .other_works .other_works_inner .works_box:nth-of-type(2) {
    width: calc(75% - 60px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#works .other_works .other_works_inner .works_box h4 {
    width: 100%;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
#works .other_works .other_works_inner .works_box ul li {
    position: relative;
    padding-left: 1.5em;
    color: #fff;
}
#works .other_works .other_works_inner .works_box ul li::before {
    content: "●";
    position: absolute;
    top:0;
    left: 0;
    color: #7d8aff;
}
#works .other_works .other_works_inner .works_box ul li.mt {
    margin-top: 24px;
}

/* contact */
#contact {
    background: url(img/bg_contact.jpg) top center no-repeat;
    background-size: cover;
    padding: 80px 0 100px;
}
#contact .section_inner {
    position: relative;
    width: 1100px;
    max-width: 96%;
    margin: auto;
    padding: 80px;
    box-sizing: border-box;
    z-index: 0;
}
#contact .overlay {
    position: absolute;
    inset: 0;
    width: 1100px;
    max-width: 96%;
    margin: 80px auto 100px;
    padding: 80px;
    box-sizing: border-box;
    background-color: rgba(0,91,170,1);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: -1;
}
#contact .section_inner h2 {
    line-height: 1.4;
    margin-bottom: 60px;
}
#contact .section_inner div.center {
    margin-bottom: 20px;
}
#contact .section_inner .form {
    width: 100%;
    max-width: 640px;
    color: #fff;
    margin: 100px auto 0;
}
#contact .section_inner .form dl {
    font-size: 14px;
}
#contact .section_inner .form dl dt {
    letter-spacing: 2px;
    margin-bottom: 5px;
}
#contact .section_inner .form dl dt span {
    display: inline-block;
    background: linear-gradient(0deg, #b99eff, #7d8aff);
    padding: 0 10px;
    margin-left: 15px;
    margin-bottom: 10px;
}
#contact .section_inner .form dl dd {
    margin-bottom: 15px;
}
#contact .section_inner .form .center {
    margin: 30px 0;
}
#contact .section_inner .form .center a {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}
#contact .section_inner .form .btn {
    text-align: center;
}
#contact .section_inner .form .btn input[type="submit"] {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 20px;
    letter-spacing: 20px;
    padding: 16px 4px 16px 20px;
    margin-top: 30px;
    width: 320px;
    box-sizing: border-box;
}
#contact .section_inner .form .btn .wpcf7-spinner {
	display: block;
}

/*-----------------------------------------
コンタクトフォーム用
-----------------------------------------*/
input[type="checkbox"],
input[type="radio"]{
	vertical-align:middle;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
	padding: 20px 25px;
	width: 100%;
    font-size: 14px;
    box-sizing: border-box;
}






/*-----------------------------------------
footer
-----------------------------------------*/
.pagetop{
	position:fixed;
	bottom:30px;
	right:30px;
	z-index:999;
}

footer {
    padding: 100px 0 0;
}
footer .footer_inner {
    width: 1100px;
    max-width: 96%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
}
footer .footer_inner .footer_inner_L {
    width: calc(50% - 60px);
}
footer .footer_inner .footer_inner_L .footer_logo {
    width: 300px;
    max-width: 100%;
    margin-bottom: 50px;
}
footer .footer_inner .footer_inner_L dl {
    display: flex;
}
footer .footer_inner .footer_inner_L dl dt {
    width: 100px;
}
footer .footer_inner .footer_inner_L dl dd {
}
footer .footer_inner .footer_inner_L p {
}
footer .footer_inner .footer_inner_L .mt {
    margin-top: 30px;
    line-height: 1.8;
}
footer .footer_inner .footer_inner_R {
    width: 50%;
    margin-top: 75px;
}
footer .footer_inner .footer_inner_R .frame {
    position: relative;
    padding: 30px;
    background: #fff;
    line-height: 1.6;
}
footer .footer_inner .footer_inner_R .frame:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #2b385d;
    padding: 20px 0;
    position: absolute;
    top: -20px;
    left: 0;
}
footer .footer_inner .footer_inner_R .frame:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #2b385d;
    padding: 20px 0;
    position: absolute;
    top: -20px;
    right: 0;
}
footer .footer_inner .footer_inner_R .frame .frame_inner:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #2b385d;
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: -20px;
}
footer .footer_inner .footer_inner_R .frame .frame_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #2b385d;
    padding: 0 20px;
    position: absolute;
    bottom: 0;
    left: -20px;
}
footer .footer_inner .footer_inner_R .frame .frame_inner div {
    margin-bottom: 10px;
}
footer .footer_inner .footer_inner_R .frame .frame_inner div.bg_blue {
    display: inline-block;
    padding: 3px 10px;
    margin-bottom: 0;
}
footer .footer_inner .privacypolicy {
    width: 100%;
    margin-bottom: 40px;
}
footer .footer_inner .privacypolicy a::before {
    content: "-";
    padding-right: 10px;
}
footer .footer_inner .privacypolicy a:hover {
    text-decoration: none;
}
footer .copyright {
    padding: 15px;
}


/* page */
.page-privacy-policy section {
	background: #fff;
}
.page-privacy-policy section .section_inner {
	width: 1100px;
    max-width: 96%;
    margin: auto;
	padding: 118px 30px 75px;
	box-sizing: border-box;
}
.page-privacy-policy section .section_inner h2 {
	line-height: 1.8;
    margin-bottom: 52px;
}
.page-privacy-policy section .section_inner h3 {
    line-height: 1.8;
	margin-bottom: 24px;
}
.page-privacy-policy section .section_inner h4 {
    line-height: 1.8;
}
.page-privacy-policy section .section_inner p {
    line-height: 1.8;
	margin-bottom: 24px;
}
.page-complete section {
	background: #fff;
}
.page-complete section .section_inner {
	width: 1100px;
    max-width: 96%;
    margin: auto;
	padding: 118px 30px 75px;
	box-sizing: border-box;
}
.page-complete section .section_inner h2{
    line-height: 1.8;
	margin-bottom: 30px;
}
.page-complete section .section_inner p {
    line-height: 1.8;
	margin-bottom: 35px;
}



.sp{ display:none; }
.sponly {display: none;}
@media screen and (max-width: 1400px) { /* タブレット横 */
}
@media screen and (max-width: 1194px) { /* iPad Pro */
}
@media screen and (max-width: 1024px) { /* タブレット横 */
    #outline .section_inner .result_box .frame {
        padding: 30px 10px;
        font-size: 20px;
    }
}
@media screen and (max-width: 896px) { /* iPhone XS MAX 横表示 */
	.sp{ display:inline-block; }
	.pc{ display:none; }
    
    .size33 {
        font-size: 30px;
    }
    .size39,
    .size42 {
        font-size: 36px;
    }
    .size65 {
        font-size: 54px;
    }
    
	.wrapper{
		width:100%;
		overflow:hidden;
	}
    
    header {
        position: fixed;
        top: 0;
    }
    header .header_inner nav {
        width: 240px;
        height: calc(100vh - 60px);
        position: fixed;
        top: 59px;
        right: 0;
        background-color: #f2f3f6;
        overflow: auto;
        transition: 0.1s linear all;
        opacity: 0;
        z-index: -1;
        padding: 30px 0 20px;
        pointer-events: none;
    }
    header .header_inner nav.active{
        opacity: 1;
		z-index:9999;
		transition: 0.1s linear all;
        pointer-events: auto;
	}
    header .header_inner nav p {
        width: 164px;
        margin: 0 auto 15px;
    }
    header .header_inner nav ul {
        width: 180px;
        margin: 0 auto 14px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
	header .header_inner nav li{
		width:100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        line-height: 1.4;
	}
    header .header_inner nav ul li.contact {
        margin-top: 5px;
    }
	header .header_inner nav ul li a{
		display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        width: 100%;
        height: 100%;
        text-align: center;
        color: #24387b;
        padding: 0;
        font-size: 16px;
	}
	header .header_inner nav ul li.contact a{
        margin-left: 0;
        color: #fff;
	}
	header .header_inner nav li a:hover{
		text-decoration:none;
	}
	.nav_btn{
    position: fixed;
    top: 11px;
    right: 15px;
    width: 35px;
    height: 35px;
        z-index: 999;
	}
	.menu__line {
		background: #fff;
		display: block;
		height: 5px;
		position: absolute;
		transition: transform .3s;
		width: 100%;
	}
	.menu__line--top {
        top: 4px;
	}
	.menu__line--center {
		top: 17px;
	}
	.menu__line--bottom {
		top: 30px;
    }
	.menu__line.active {
    }
	.menu__line--top.active {
		top: 17px;
		transform: rotate(45deg);
	}
	.menu__line--center.active {
		transform: scaleX(0);
	}
	.menu__line--bottom.active {
		top: 17px;
		transform: rotate(135deg);
	}
	nav.sp{
		width:240px;
        height: calc(100vh - 60px);
		position:fixed;
		top:60px;
		right: 0;
		background-color:#f5f5f3;
		overflow:auto;
		transition: 0.1s linear all;
        opacity: 0;
		z-index: -1;
        padding: 67px 0 20px;
	}
	nav.sp.active{
        opacity: 1;
		z-index:9999;
		transition: 0.1s linear all;
	}
    nav.sp p {
        width: 164px;
        margin: 0 auto 15px;
    }
    nav.sp ul {
        width: 164px;
        margin: 0 auto 14px;
        display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }
	nav.sp li{
		width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
        margin-bottom: 6px;
        min-height: 42px;
        line-height: 1.4;
	}
	nav.sp li a{
		display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        font-size: 12px;
        text-align: center;
        color: #24387b;
        background: #fff;
        border: 1px solid #24387b;
	}
	nav.sp li:last-child a{
        color: #fff;
        background: #b49309;
        border: 1px solid #b49309;
	}
	nav.sp li a:hover{
		text-decoration:none;
	}
    
    #message {
        margin-top: 0;
        padding: 0;
    }
    #message .section_inner {
        margin: 0;
        padding: 50px 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }
    #message .section_inner .section_inner_L,
    #message .section_inner .section_inner_R{
        width: 100%;
        text-align: center;
    }
    #message .section_inner .section_inner_L{
        margin-bottom: 10px;
    }
    #message .section_inner .section_inner_R img {
        width: 100%;
        height: auto;
    }
    
    #outline .section_inner .outline_box {
        gap: 50px;
        margin: 0 30px;
    }
    #outline .section_inner .outline_box .frame {
        max-width: 100%;
        width: 100%;
    }
    #outline .section_inner .outline_box .frame:nth-child(2) .frame_inner .num,
    #outline .section_inner .outline_box .frame:nth-child(3) .frame_inner .num,
    #outline .section_inner .outline_box .frame:nth-child(4) .frame_inner .num,
    #outline .section_inner .outline_box .frame:nth-child(5) .frame_inner .num {
        width: 50px;
        top: -25px;
        left: -25px;
        right: 100%;
    }
    #outline .section_inner .outline_box .frame:nth-child(5) {
        order: 4;
    }
    #outline .section_inner .outline_box .frame .frame_inner {
        display: flex;
        gap: 20px;
    }
    #outline .section_inner .outline_box .frame .frame_inner .frame_inner_txt h3 {
        margin-top: 10px;
    }
    #outline .section_inner .arrow {
        margin-top: 0;
    }
    #outline .section_inner .arrow img {
        max-width: 50%;
    }
    #outline .section_inner .result_box {
        margin: 0 15px;
    }
    #outline .section_inner .result_box .frame {
        width: calc(50% - 20px);
    }
    
    #business {
        background: #fff;
    }
    #business .section_inner {
        padding: 0;
        gap: 30px;
    }
    #business .section_inner:before,
    #business .section_inner:after {
        display: none;
    }
    #business .section_inner .section_inner_L,
    #business .section_inner .section_inner_R {
        width: 100%;
    }
    #business .section_inner .section_inner_L {
        text-align: center;
    }
    #business .section_inner .section_inner_L img {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        max-width: 90%;
    }
    #business .section_inner .business_box .business_box_inner {
        width: 100%;
    }
    
    #works .section_inner .section_inner_R,
    #works .section_inner .section_inner_L {
        width: 100%;
        justify-content: center;
    }
    #works .section_inner .section_inner_L {
        order: 2;
    }
    #works .section_inner .section_inner_R:before,
    #works .section_inner .section_inner_R:after,
    #works .section_inner .section_inner_L:before{
        display: none;
    }
    
    #works .other_works .other_works_inner h3 {
        padding: 15px;
        text-align: center;
    }
    #works .other_works .other_works_inner .works_box,
    #works .other_works .other_works_inner .works_box:nth-of-type(2) {
        width: 100%;
        margin-bottom: 40px;
    }
    #works .other_works .other_works_inner .works_box:nth-of-type(1) ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
    }
    #works .other_works .other_works_inner .works_box:nth-of-type(1) ul li {
        width: calc(50% - 10px);
        box-sizing: border-box;
    }
    #works .other_works .other_works_inner .works_box:nth-of-type(2) ul {
        width: calc(50% - 10px);
    }
    #works .section_inner > div:nth-child(2) > div {
        padding: 25px;
    }
    
    #contact {
        padding: 0;
    }
    #contact .overlay {
        max-width: 100%;
        margin: 0;
        padding: 15px;
    }
    #contact .section_inner {
        padding: 80px 15px;
    }
        
    footer {
        padding: 60px 0 0;
	}
    footer .footer_inner .footer_inner_L {
        order: 2;
        width: 100%;
    }
    footer .footer_inner .footer_inner_R {
        order: 1;
        width: 100%;
        margin: 0 20px;
    }
    footer .footer_inner .privacypolicy {
        order: 3;
    }
    
}
@media screen and (max-width: 640px) {
    .sponly {display: inline-block;}
    .size22 {
        font-size: 18px;
    }
    .size39, .size42 {
        font-size: 26px;
    }
    
    #outline .section_inner .result_box .center {
        letter-spacing: 3px;
    }
    #outline .section_inner .result_box .frame {
        font-size: 18px;
    }
     
}
@media screen and (max-width: 480px) {
    .size14,.size18,.size22 {
        font-size: 4.2vw;
    }
    .size39, .size42 {
        font-size: 5.6vw;
    }
    .size65 {
        font-size: 48px;
    }
    
    main h1.size18 {
        font-size: 3.8vw;
        letter-spacing: 1px;
        line-height: 1.6;
    }
    #message {
        padding-top: 30px;
        margin-top: -30px;
    }
    #message .section_inner {
        padding: 30px 0 50px;
    }
    #message .section_inner h2 {
        font-size: 5.6vw;
    }
    #message .section_inner .section_inner_L p {
        font-size: 4.0vw;
        line-height: 2.0;
    }
    #outline {
        padding: 30px 0 50px;
    }
    #outline h2 {
        margin-bottom: 45px;
    }
    #outline .section_inner .result_box .center {
        font-size: 5.2vw;
    }
    #outline .section_inner .result_box .frame {
        font-size: 4.2vw;
    }
    #outline .section_inner .outline_box .frame .frame_inner {
        flex-wrap: wrap;
    }
    #outline .section_inner .outline_box .frame .frame_inner .frame_inner_txt{
        width: 100%;
    }
    #outline .section_inner .outline_box .frame .frame_inner .frame_inner_txt h3 {
        font-size: 4.8vw;
    }
    #outline .section_inner .outline_box .frame .frame_inner p {
        font-size: 3.8vw;
    }
    
    #business {
        padding: 30px 0 50px;
    }
    #business .section_inner {
        padding: 0 15px;
    }
    #business .section_inner .business_box {
        margin: 10px 0 0;
    }
    #business .section_inner .section_inner_R h3,
    #business .section_inner .business_box .business_box_inner h4{
        margin-bottom: 10px;
    }
    #business .section_inner .section_inner_R p,
    #business .section_inner .business_box .business_box_inner p {
        font-size: 3.8vw;
        line-height: 1.4;
    }
    #works h2 {
        padding: 30px 0;
    }
    #works .bg_blue {
        padding: 20px 0;
    }
    #works .section_inner h3 {
        font-size: 5.2vw;
    }
    #works .other_works .other_works_inner .works_box:nth-of-type(1) ul li,
    #works .other_works .other_works_inner .works_box:nth-of-type(2) ul {
        width: 100%;
    }
    #works .section_inner ul li,
    #works .section_inner dl dd{
        font-size: 3.1vw;
    }
    #works .section_inner dl dd.ls_s {
        letter-spacing: -0.1px;
    }
    #works .other_works .other_works_inner {
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    #contact .section_inner {
        padding: 30px 15px;
    }
    #contact .section_inner h2 {
        margin-bottom: 30px;
    }
    #contact h2 .size39 {
        font-size: 48px;
    }
    #contact .section_inner div.center.size33 {
        font-size: 6.2vw;
    }
    #contact .section_inner .form {
        margin: 50px auto 0;
    }
    #contact .section_inner .form dl dt p {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    #contact .section_inner .form dl dt span {
        line-height: 1.0;
        padding: 4px 10px 2px;
        vertical-align: middle;
        margin-bottom: 0;
    }
    footer .footer_inner .footer_inner_L {
        padding: 0 15px;
    }
    footer .footer_inner .footer_inner_L dl,
    footer .footer_inner .footer_inner_L p,
    footer .footer_inner .footer_inner_L .mt{
        font-size: 14px;
    }
	
	.page-privacy-policy section .section_inner {
		padding: 97px 15px 55px
	}
	.page-privacy-policy section .section_inner .size14{
		font-size: 14px;
	}
	.page-privacy-policy section .section_inner .size23 {
		font-size: 23px;
	}
	.page-complete section .section_inner {
		padding: 97px 15px 55px
	}
	.page-complete section .section_inner .size29 {
		font-size: 23px;
	}
}
@media screen and (max-width: 375px) {
}