﻿@charset "utf-8";
/* CSS Document */
@import url(layout.css);
@import url(font-awesome.min.css);
@import url(all.min.css);


* {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

i {
	font-family: Font Awesome\ 5 Free;
	font-style:normal;
}

@font-face {
  font-family: 'LNPOP';
  src: url(../fonts/LightNovelPOPv2.otf);
}

@font-face {
    font-family: 'futura';
    src: url('../fonts/Futura-ExtraBold.woff2') format('woff2'),
        url('../fonts/Futura-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'corp';
  src: url('../fonts/Corporate-Logo-Rounded-Bold-ver3.woff2') format('opentype');
}

@font-face {
  font-family: 'BS-SC';
  src: url(../fonts/bahnschrift-semicondensed.ttf);
}

@font-face {
  font-family: 'BS-C';
  src: url(../fonts/bahnschrift.ttf);
}

@font-face {
  font-family: 'mb-b';
  src: url(../fonts/A-OTF-GothicMB101Pro-Bold.otf);
}

@font-face {
  font-family: 'shingo-m';
  src: url(../fonts/A-OTF-ShinGoPro-Medium.otf);
}

@font-face {
  font-family: 'shingo-h';
  src: url(../fonts/A-OTF-ShinGoPro-Heavy.otf);
}

@font-face {
  font-family: 'ryumin-h';
  src: url(../fonts/A-OTF-RyuminPro-Heavy.otf);
}

@font-face {
  font-family: '';
  src: url();
}

/*----------------------------------------
共通項目は最下部▼
-----------------------------------------*/


/*====================================
PC版
=====================================*/
@media print, screen and (min-width: 521px) {

.sp_box {
	display: none !important;
}

body {
	font-size: 18px;
	line-height: 1.76;
	margin: 0;
    padding: 0;
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
    min-width: 1300px;
}

main {
    position: relative;
    /* margin-top: 70px; */
}



/*--------------------------------------------
　ヘッダー
--------------------------------------------*/
header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    min-width: 1300px;
    height: 96px;
    background-color: #fff;
    z-index: 999;
    transition: all .3s ease;
}

header.active {
    top: -96px;
}

.header_nav {
    display: flex;
    gap: 12px;
}

.header_nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 56px;
    border-radius: 28px;
}

.header_nav li:nth-of-type(1) a {
    background: linear-gradient(90deg,rgba(0, 162, 255, 1) 0%, rgba(0, 181, 224, 1) 100%);
}

.header_nav li:nth-of-type(2) a {
    background: linear-gradient(90deg,rgba(14, 188, 221, 1) 0%, rgba(0, 211, 175, 1) 100%);
}

.header_nav li:nth-of-type(3) a {
    background: linear-gradient(90deg,rgba(0, 214, 170, 1) 0%, rgba(0, 234, 138, 1) 100%);
}

.header_nav .inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 146px;
    height: 52px;
    border-radius: 26px;
    overflow: hidden;
}

.header_nav li:nth-of-type(1) .inner {
    background: linear-gradient(90deg,rgba(180, 233, 255, 1) 0%, rgba(177, 239, 241, 1) 100%);
}

.header_nav li:nth-of-type(2) .inner {
    background: linear-gradient(90deg,rgba(177, 240, 239, 1) 0%, rgba(173, 248, 221, 1) 100%);
}

.header_nav li:nth-of-type(3) .inner {
    background: linear-gradient(90deg,rgba(173, 249, 218, 1) 0%, rgba(170, 255, 205, 1) 100%);
}

.header_nav .stripe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../common/stripe.png);
    opacity: 1;
}

.header_nav a:hover .stripe {
    opacity: 0.5;
}

.header_nav .inner p {
    position: relative;
    font-size: 20px;
    font-family: 'corp';
    z-index: 1;
}



/*------------------------------------------
　フッター
-------------------------------------------*/
footer {
    position: relative;
    width: 100%;
    padding-top: 70px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,rgba(180, 233, 255, 1) 0%, rgba(170, 255, 205, 1) 100%);
}

footer .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .company_name {
    margin-top: 60px;
    font-size: 30px;
    font-weight: bold;
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

footer .address {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.5;
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

footer .tel {
    font-size: 16px;
    line-height: 1.5;
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

.footer_btn {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.footer_btn a:hover {
    filter: brightness(1.05);
}

.footer_btn a img {
    height: 43px;
}

.footer_btn .wrapper {
    display: flex;
    gap: 15px;
}

footer .kanpu {
    position: relative;
    display: flex;
    align-items: center;
}

footer .kanpu p {
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-size: 16px;
    position: absolute;
    right: 13px;
    letter-spacing: -1.5px;
    color: #fff;
    font-weight: bold;
    line-height: 1.1;
}

.copyright {
    font-size: 14px;
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #999999;
}






/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top {
    display: block;
    position: fixed;
    right: 8px;
    bottom: 20px;
    z-index: 5;
    transition: all .3s ease;
    pointer-events: none;
    opacity: 0;
}
.page_top.active {
    pointer-events: all;
    opacity: 1;
}

.grecaptcha-badge  {
    bottom: 160px !important;
}


/*------------------------------------------
ボタン
-------------------------------------------*/

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    font-family: 'corp';
    width: 400px;
    height: 90px;
    border-radius: 45px;
    background: linear-gradient(90deg,#00b0e8 0%, #00d8ab 100%);
    transition: .3s ease;
}

.btn:hover {
    filter: brightness(1.05);
}



/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    min-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
}

.wrap {
	position: relative;
	width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* padding左右 */

.px10 {
    padding: 0 10px;
}

.px20 {
    padding: 0 20px;
}

.px30 {
    padding: 0 30px;
}

.px40 {
    padding: 0 40px;
}

.px50 {
    padding: 0 50px;
}

.px60 {
    padding: 0 60px;
}

.px70 {
    padding: 0 70px;
}

.px80 {
    padding: 0 80px;
}

.px90 {
    padding: 0 90px;
}

.px100 {
    padding: 0 100px;
}

/* padding上下 */

.py10 {
    padding: 10px 0;
}

.py20 {
    padding: 20px 0;
}

.py30 {
    padding: 30px 0;
}

.py40 {
    padding: 40px 0;
}

.py50 {
    padding: 50px 0;
}

.py60 {
    padding: 60px 0;
}

.py70 {
    padding: 70px 0;
}

.py80 {
    padding: 80px 0;
}

.py90 {
    padding: 90px 0;
}

.py100 {
    padding: 100px 0;
}

/* padding-top */

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pt80 {
    padding-top: 80px;
}

.pt90 {
    padding-top: 90px;
}

.pt100 {
    padding-top: 100px;
}

.pt110 {
    padding-top: 110px;
}

.pt120 {
    padding-top: 120px;
}

.pt130 {
    padding-top: 130px;
}

.pt140 {
    padding-top: 140px;
}

.pt150 {
    padding-top: 150px;
}

.pt160 {
    padding-top: 160px;
}

.pt170 {
    padding-top: 170px;
}

.pt180 {
    padding-top: 180px;
}

.pt190 {
    padding-top: 190px;
}

.pt200 {
    padding-top: 200px;
}

/* padding-bottom */

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb70 {
    padding-bottom: 70px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb100 {
    padding-bottom: 100px;
}

.pb110 {
    padding-bottom: 110px;
}

.pb120 {
    padding-bottom: 120px;
}

.pb130 {
    padding-bottom: 130px;
}

.pb140 {
    padding-bottom: 140px;
}

.pb150 {
    padding-bottom: 150px;
}

.pb160 {
    padding-bottom: 160px;
}

.pb170 {
    padding-bottom: 170px;
}

.pb180 {
    padding-bottom: 180px;
}

.pb190 {
    padding-bottom: 190px;
}

.pb200 {
    padding-bottom: 200px;
}

.m_auto {
    margin: 0 auto;
}

/* margin左右 */

.mx10 {
    margin: 0 10px;
}

.mx20 {
    margin: 0 20px;
}

.mx30 {
    margin: 0 30px;
}

.mx40 {
    margin: 0 40px;
}

.mx50 {
    margin: 0 50px;
}

.mx60 {
    margin: 0 60px;
}

.mx70 {
    margin: 0 70px;
}

.mx80 {
    margin: 0 80px;
}

.mx90 {
    margin: 0 90px;
}

.mx100 {
    margin: 0 100px;
}

/* margin上下 */

.my10 {
    margin: 10px 0;
}

.my20 {
    margin: 20px 0;
}

.my30 {
    margin: 30px 0;
}

.my40 {
    margin: 40px 0;
}

.my50 {
    margin: 50px 0;
}

.my60 {
    margin: 60px 0;
}

.my70 {
    margin: 70px 0;
}

.my80 {
    margin: 80px 0;
}

.my90 {
    margin: 90px 0;
}

.my100 {
    margin: 100px 0;
}


/* margin-top */

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.mt110 {
    margin-top: 110px;
}

.mt120 {
    margin-top: 120px;
}

.mt130 {
    margin-top: 130px;
}

.mt140 {
    margin-top: 140px;
}

.mt150 {
    margin-top: 150px;
}

.mt160 {
    margin-top: 160px;
}

.mt170 {
    margin-top: 170px;
}

.mt180 {
    margin-top: 180px;
}

.mt190 {
    margin-top: 190px;
}

.mt200 {
    margin-top: 200px;
}

/* margin-bottom */

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.mb110 {
    margin-bottom: 110px;
}

.mb120 {
    margin-bottom: 120px;
}

.mb130 {
    margin-bottom: 130px;
}

.mb140 {
    margin-bottom: 140px;
}

.mb150 {
    margin-bottom: 150px;
}

.mb160 {
    margin-bottom: 160px;
}

.mb170 {
    margin-bottom: 170px;
}

.mb180 {
    margin-bottom: 180px;
}

.mb190 {
    margin-bottom: 190px;
}

.mb200 {
    margin-bottom: 200px;
}


/*--------------------------------------------
　画像
---------------------------------------------*/
img {
    display: block;
	border: none;
	margin: 0;
	padding: 0;
}

.img_auto {
    width: 100%;
    height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    position: relative;
    margin: 0;
    font-weight: normal;
}

.txt10 {
    font-size: 10px;
}

.txt12 {
    font-size: 12px;
}

.txt14 {
    font-size: 14px;
}

.txt16 {
    font-size: 16px;
}

.txt20 {
    font-size: 20px;
}

.txt22 {
    font-size: 22px;
}

.txt24 {
    font-size: 24px;
}

.txt26 {
    font-size: 26px;
}

.txt28 {
    font-size: 28px;
}

.txt30 {
    font-size: 30px;
}

.txt32 {
    font-size: 32px;
}

.txt34 {
    font-size: 34px;
}

.txt36 {
    font-size: 36px;
}

.txt38 {
    font-size: 38px;
}

.txt40 {
    font-size: 40px;
}

.txt42 {
    font-size: 42px;
}

.txt44 {
    font-size: 44px;
}

.txt46 {
    font-size: 46px;
}

.txt48 {
    font-size: 48px;
}

.txt50 {
    font-size: 50px;
}

.txt52 {
    font-size: 52px;
}

.txt54 {
    font-size: 54px;
}

.txt56 {
    font-size: 56px;
}

.txt58 {
    font-size: 58px;
}

.txt60 {
    font-size: 60px;
}


}   /*  PC版ここまで  */






/*===================================
スマホ版
===================================*/
@media only screen and (max-width : 520px ) {

.pc_box {
	display: none !important;
}

.sp_non {
	display: none;
}


body {
	margin: 0;
	padding: 0;
    font-size: 3.7vw;
	line-height: 1.74;
}

main {
    margin-top: 13vw;
}



/*------------------------------------------------
　ヘッダー&ナビ
------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 3.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 13vw;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0px 0px 8px 0px #777777;
}

.header_logo {
    position: relative;
    height: 10vw;
    width: auto;
    z-index: 2;
}

.header_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
}

.header_btn {
    position: relative;
    width: 8.65vw;
    height: 8.65vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}

.header_btn .circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.header_btn .arrow {
    position: absolute;
    width: 4.86vw;
    height: auto;
    transform: translateY(0.4vw) translateX(0.1vw);
    transition: all .3s ease;
}

.header_nav {
    position: absolute;
    top: -100vh;
    left: 0;
    padding-top: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    z-index: 0;
    transition: all .3s ease;
}

.header_nav.active {
    top: 0;
    opacity: 1;
}

.header_btn.active .arrow {
    transform: rotate(180deg) translateY(0.4vw) translateX(-0.2vw);
}

.header_nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 73vw;
    height: 12vw;
    border-radius: 6vw;
}

.header_nav li:nth-of-type(1) a {
    background: linear-gradient(45deg,rgba(25, 172, 254 , 1) 0%, rgba(84, 203, 236, 1) 100%);
}

.header_nav li:nth-of-type(2) a {
    background: linear-gradient(45deg,rgba(36, 178, 250, 1) 0%, rgba(115, 219, 226, 1) 100%);
}

.header_nav li:nth-of-type(3) a {
    background: linear-gradient(45deg,rgba(60, 190, 243, 1) 0%, rgba(140, 232, 218, 1) 100%);
}

.header_nav li:nth-of-type(4) a {
    background: linear-gradient(45deg,rgba(90, 206, 234, 1) 0%, rgba(150, 237, 215, 1) 100%);
}

.header_nav .inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72.2vw;
    height: 11.2vw;
    border-radius: 5.6vw;
    overflow: hidden;
}

.header_nav li:nth-of-type(1) .inner {
    background: linear-gradient(45deg,rgba(179, 234, 255, 1) 0%, rgba(177, 242, 235, 1) 100%);
}

.header_nav li:nth-of-type(2) .inner {
    background: linear-gradient(45deg,rgba(179, 235, 252, 1) 0%, rgba(175, 245, 226, 1) 100%);
}

.header_nav li:nth-of-type(3) .inner {
    background: linear-gradient(45deg,rgba(178, 238, 244, 1) 0%, rgba(174, 249, 217, 1) 100%);
}

.header_nav li:nth-of-type(4) .inner {
    background: linear-gradient(45deg,rgba(176, 242, 234, 1) 0%, rgba(174, 250, 214, 1) 100%);
}

.header_nav .stripe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../common/stripe.png);
    opacity: 1;
    background-size: 1.62vw;
}

.header_nav a:hover .stripe {
    opacity: 0.5;
}

.header_nav .inner p {
    position: relative;
    font-size: 20px;
    font-family: 'corp';
    z-index: 1;
}


/*------------------------------------------
　フッター
-------------------------------------------*/
footer {
    position: relative;
    width: 100%;
    padding-top: 10vw;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,rgba(180, 233, 255, 1) 0%, rgba(170, 255, 205, 1) 100%);
}

footer .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_logo img {
    width: 60vw;
}

footer .company_name {
    margin-top: 5vw;
    font-size: 8.1vw;
    line-height: 1;
    font-weight: bold;
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

footer .address {
    font-size: 3.8vw;
    margin-top: 4vw;
    line-height: 1.5;
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

footer .tel {
    font-size: 3.8vw;
    line-height: 1.5;
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

footer .tel span {
    display: block;
}

.footer_btn {
    margin-top: 30px;
}

.footer_btn .wrapper {
    margin-top: 4vw;
    display: flex;
    justify-content: center;
    gap: 12vw;
}

.footer_btn .wrapper a {
    width: 9.6vw;
}

footer .kanpu {
    position: relative;
    display: flex;
    align-items: center;
    width: 40vw;
    height: auto;
}

footer .kanpu p {
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-size: 4.3vw;
    position: absolute;
    right: 4vw;
    letter-spacing: -0.1em;
    color: #fff;
    font-weight: bold;
    line-height: 1.1;
}

.copyright {
    font-size: 2.7vw;
    width: 100%;
    margin-top: 10vw;
    border-top: 1px solid #999999;
}



/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top {
    position: fixed;
    right: 2vw;
    bottom: 5vw;
    width: 7vw;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 5;
}

.page_top.active {
    opacity: 1;
    pointer-events: all;
}

.grecaptcha-badge  {
    bottom: 22vw !important;
}

.anc {
    position: relative;
    top: -13vw;
}



/*------------------------------------------
ボタン
-------------------------------------------*/

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 5.4vw;
    font-family: 'corp';
    width: 62vw;
    height: 14.8vw;
    border-radius: 7.4vw;
    background: linear-gradient(90deg,#00b0e8 0%, #00d8ab 100%);
    transition: .3s ease;
}

.btn:hover {
    filter: brightness(1.05);
}




/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    margin: 0 auto;
}

.wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 2.7%;
}

.row {
    width: 100%;
    position: relative;
    margin: 0;
}

/* padding左右 */

.px10 {
    padding-bottom: 0 1vw;
}

.px20 {
    padding-bottom: 0 2vw;
}

.px30 {
    padding-bottom: 0 3vw;
}

.px40 {
    padding-bottom: 0 4vw;
}

.px50 {
    padding-bottom: 0 5vw;
}

.px60 {
    padding-bottom: 0 6vw;
}

.px70 {
    padding-bottom: 0 7vw;
}

.px80 {
    padding-bottom: 0 8vw;
}

.px90 {
    padding-bottom: 0 9vw;
}

.px100 {
    padding-bottom: 0 10vw;
}

/* padding上下 */

.py10 {
    padding-bottom: 1vw 0;
}

.py20 {
    padding-bottom: 2vw 0;
}

.py30 {
    padding-bottom: 3vw 0;
}

.py40 {
    padding-bottom: 4vw 0;
}

.py50 {
    padding-bottom: 5vw 0;
}

.py60 {
    padding-bottom: 6vw 0;
}

.py70 {
    padding-bottom: 7vw 0;
}

.py80 {
    padding-bottom: 8vw 0;
}

.py90 {
    padding-bottom: 9vw 0;
}

.py100 {
    padding-bottom: 10vw 0;
}

/* padding-top */

.pt10 {
    padding-top: 1vw;
}

.pt20 {
    padding-top: 2vw;
}

.pt30 {
    padding-top: 3vw;
}

.pt40 {
    padding-top: 4vw;
}

.pt50 {
    padding-top: 5vw;
}

.pt60 {
    padding-top: 6vw;
}

.pt70 {
    padding-top: 7vw;
}

.pt80 {
    padding-top: 8vw;
}

.pt90 {
    padding-top: 9vw;
}

.pt100 {
    padding-top: 10vw;
}

.pt110 {
    padding-top: 11vw;
}

.pt120 {
    padding-top: 12vw;
}

.pt130 {
    padding-top: 13vw;
}

.pt140 {
    padding-top: 14vw;
}

.pt150 {
    padding-top: 15vw;
}

.pt160 {
    padding-top: 16vw;
}

.pt170 {
    padding-top: 17vw;
}

.pt180 {
    padding-top: 18vw;
}

.pt190 {
    padding-top: 19vw;
}

.pt200 {
    padding-top: 20vw;
}

/* padding-bottom */

.pb10 {
    padding-bottom: 1vw;
}

.pb20 {
    padding-bottom: 2vw;
}

.pb30 {
    padding-bottom: 3vw;
}

.pb40 {
    padding-bottom: 4vw;
}

.pb50 {
    padding-bottom: 5vw;
}

.pb60 {
    padding-bottom: 6vw;
}

.pb70 {
    padding-bottom: 7vw;
}

.pb80 {
    padding-bottom: 8vw;
}

.pb90 {
    padding-bottom: 9vw;
}

.pb100 {
    padding-bottom: 10vw;
}

.pb110 {
    padding-bottom: 11vw;
}

.pb120 {
    padding-bottom: 12vw;
}

.pb130 {
    padding-bottom: 13vw;
}

.pb140 {
    padding-bottom: 14vw;
}

.pb150 {
    padding-bottom: 15vw;
}

.pb160 {
    padding-bottom: 16vw;
}

.pb170 {
    padding-bottom: 17vw;
}

.pb180 {
    padding-bottom: 18vw;
}

.pb190 {
    padding-bottom: 19vw;
}

.pb200 {
    padding-bottom: 20vw;
}

/* margin左右 */

.mx10 {
    margin: 0 1vw;
}

.mx20 {
    margin: 0 2vw;
}

.mx30 {
    margin: 0 3vw;
}

.mx40 {
    margin: 0 4vw;
}

.mx50 {
    margin: 0 5vw;
}

.mx60 {
    margin: 0 6vw;
}

.mx70 {
    margin: 0 7vw;
}

.mx80 {
    margin: 0 8vw;
}

.mx90 {
    margin: 0 9vw;
}

.mx100 {
    margin: 0 10vw;
}

/* margin上下 */

.my10 {
    margin: 1vw 0;
}

.my20 {
    margin: 2vw 0;
}

.my30 {
    margin: 3vw 0;
}

.my40 {
    margin: 4vw 0;
}

.my50 {
    margin: 5vw 0;
}

.my60 {
    margin: 6vw 0;
}

.my70 {
    margin: 7vw 0;
}

.my80 {
    margin: 8vw 0;
}

.my90 {
    margin: 9vw 0;
}

.my100 {
    margin: 10vw 0;
}

/* margin-top */

.mt10 {
    margin-top: 1vw;
}

.mt20 {
    margin-top: 2vw;
}

.mt30 {
    margin-top: 3vw;
}

.mt40 {
    margin-top: 4vw;
}

.mt50 {
    margin-top: 5vw;
}

.mt60 {
    margin-top: 6vw;
}

.mt70 {
    margin-top: 7vw;
}

.mt80 {
    margin-top: 8vw;
}

.mt90 {
    margin-top: 9vw;
}

.mt100 {
    margin-top: 10vw;
}

.mt110 {
    margin-top: 11vw;
}

.mt120 {
    margin-top: 12vw;
}

.mt130 {
    margin-top: 13vw;
}

.mt140 {
    margin-top: 14vw;
}

.mt150 {
    margin-top: 15vw;
}

.mt160 {
    margin-top: 16vw;
}

.mt170 {
    margin-top: 17vw;
}

.mt180 {
    margin-top: 18vw;
}

.mt190 {
    margin-top: 19vw;
}

.mt200 {
    margin-top: 20vw;
}

/* margin-bottom */

.mb10 {
    margin-bottom: 1vw;
}

.mb20 {
    margin-bottom: 2vw;
}

.mb30 {
    margin-bottom: 3vw;
}

.mb40 {
    margin-bottom: 4vw;
}

.mb50 {
    margin-bottom: 5vw;
}

.mb60 {
    margin-bottom: 6vw;
}

.mb70 {
    margin-bottom: 7vw;
}

.mb80 {
    margin-bottom: 8vw;
}

.mb90 {
    margin-bottom: 9vw;
}

.mb100 {
    margin-bottom: 10vw;
}

.mb110 {
    margin-bottom: 11vw;
}

.mb120 {
    margin-bottom: 12vw;
}

.mb130 {
    margin-bottom: 13vw;
}

.mb140 {
    margin-bottom: 14vw;
}

.mb150 {
    margin-bottom: 15vw;
}

.mb160 {
    margin-bottom: 16vw;
}

.mb170 {
    margin-bottom: 17vw;
}

.mb180 {
    margin-bottom: 18vw;
}

.mb190 {
    margin-bottom: 19vw;
}

.mb200 {
    margin-bottom: 20vw;
}

/* 余白スペース調整用 */

.space01 {
    margin-top: 1vw;
}

.space02 {
    margin-top: 2vw;
}

.space03 {
    margin-top: 3vw;
}

.space04 {
    margin-top: 4vw;
}

.space05 {
    margin-top: 5vw;
}

.space06 {
    margin-top: 6vw;
}

.space07 {
    margin-top: 7vw;
}

.space08 {
    margin-top: 8vw;
}

.space09 {
    margin-top: 9vw;
}

.space10 {
    margin-top: 10vw;
}

.space11 {
    margin-top: 11vw;
}

.space12 {
    margin-top: 12vw;
}

.space13 {
    margin-top: 13vw;
}

.space14 {
    margin-top: 14vw;
}

.space15 {
    margin-top: 15vw;
}

.space16 {
    margin-top: 16vw;
}

.space17 {
    margin-top: 17vw;
}

.space18 {
    margin-top: 18vw;
}

.space19 {
    margin-top: 19vw;
}

.space20 {
    margin-top: 20vw;
}

.space01_min {
    margin-top: -1vw;
}

.space02_min {
    margin-top: -2vw;
}

.space03_min {
    margin-top: -3vw;
}

.space04_min {
    margin-top: -4vw;
}

.space05_min {
    margin-top: -5vw;
}

.space06_min {
    margin-top: -6vw;
}

.space07_min {
    margin-top: -7vw;
}

.space08_min {
    margin-top: -8vw;
}

.space09_min {
    margin-top: -9vw;
}

.space10_min {
    margin-top: -10vw;
}

.space11_min {
    margin-top: -11vw;
}

.space12_min {
    margin-top: -12vw;
}

.space13_min {
    margin-top: -13vw;
}

.space14_min {
    margin-top: -14vw;
}

.space15_min {
    margin-top: -15vw;
}

.space16_min {
    margin-top: -16vw;
}

.space17_min {
    margin-top: -17vw;
}

.space18_min {
    margin-top: -18vw;
}

.space19_min {
    margin-top: -19vw;
}

.space20_min {
    margin-top: -20vw;
}


/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	width: 100%;
	height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    position: relative;
    margin: 0;
}

.txt10_sp {
    font-size: 2.3vw;
}

.txt12_sp {
    font-size: 2.8vw;
}

.txt14_sp {
    font-size: 3.2vw;
}

.txt16_sp {
    font-size: 3.7vw;
}

.txt18_sp {
    font-size: 4.2vw;
}

.txt20_sp {
    font-size: 4.6vw;
}

.txt22_sp {
    font-size: 5vw;
}

.txt24_sp {
    font-size: 5.6vw;
}

.txt26_sp {
    font-size: 6vw;
}

.txt28_sp {
    font-size: 6.5vw;
}

.txt30_sp {
    font-size: 6.9vw;
}

.txt32_sp {
    font-size: 7.4vw;
}

.txt34_sp {
    font-size: 7.8vw;
}

.txt36_sp {
    font-size: 8.3vw;
}

.txt38_sp {
    font-size: 8.8vw;
}

.txt40_sp {
    font-size: 9.2vw;
}



}  /*  スマホ版ここまで  */










/*---------------------------------------
　共通
---------------------------------------*/


input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

#textarea,
#textfield,
#textfield1,
#textfield2,
#textfield3 {
    border-radius: 4px;
    border: 1px solid #999999;
    padding: 0.32rem 0.4rem 0.2rem 0.4rem;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}

#select {
    border-radius: 4px;
    border: 1px solid #999999;
    /* padding: 0.32rem 0.4rem 0.2rem 0.4rem; */
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}



html {
  scrollbar-gutter: stable;
}

body {
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-feature-settings: "palt";
    font-weight: 500;
}

textarea,input {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

p, ul, li {
	padding: 0;
	margin: 0;
	list-style: none;
    text-align: justify;
}

dl, dt, dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
	color: #000000;
	text-decoration: none;
    margin: 0;
    padding: 0;
}

button,a {
    transition: all .3s ease;
}

table {
	border-collapse: collapse;
    border-spacing: 0;
}


span,
div {
	margin: 0;
	padding: 0;
}

.order01 {
	order: 1;
}

.order02 {
	order: 2;
}

.order03 {
	order: 3;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.none {
    display: none !important;
}

.yumincho {
    font-family:"Yu Mincho","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","Noto Serif JP","MS PMincho",serif;
}

.yugothic {
    font-family:"Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

.bold {
    font-weight: bold;
}

.no_scroll {
    height: 100vh;
    overflow-y: hidden;
}

.txt_center {
    text-align: center;
}

.txt_indent {
    padding-left: 1em;
    text-indent: -1em;
}

.txt_nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


