@charset "utf-8";

/*
Theme Name: AEO LP
Description: 
Author: Taniguchi
Version: 1.0
*/

/*===========
reset_css
===========*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /*    font-size: 100%;*/
  /*    font-style: normal;*/
  /*    font-weight: normal;*/
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
p {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style-type: none !important;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}
b,
strong {
  font-weight: bold !important;
}

/*======================
basic_setting
======================*/
html {
  font-size: 62.5%;
  font-size: 0.625vw;
  overflow: auto;
}
@media only screen and (max-width: 780px) {
  html {
    font-size: calc(100vw * 10 / 780);
  }
}

body {
  font-family: 'M PLUS 1p', sans-serif;
  color: #2c2c2c;
  line-height: 1.4;
  /*	letter-spacing: 0.05em;*/
  font-weight: 500;
}
h2,
h3 {
  line-height: 1.4;
}
p {
  color: #2c2c2c;
  line-height: 1.6;
  font-weight: 700;
}
a {
  color: #2c2c2c;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}
iframe {
  vertical-align: bottom;
}

/*======================
link_hover色々
======================*/

/*透過する*/
.deco a {
  /*	transition: 0.5s ease;*/
}
.deco a:hover {
  opacity: 0.8;
}

/*下線がついている→消える*/
.deco01 a {
  text-decoration: underline;
}
.deco01 a:hover {
  text-decoration: none;
}

/*ゆっくり透過する*/
.deco02 a {
  transition: all 0.3s;
}
.deco02 a:hover {
  opacity: 0.6;
}

/*下線が無い→下線がつく*/
.deco03 a:hover {
  text-decoration-line: underline;
}

/*ふわっと浮き上がる（ドロップシャドウ）*/
.deco-shadow a {
  transition: all 0.3s;
}
.deco-shadow a:hover {
  box-shadow: 0px 6px 22px 0px rgba(185, 185, 185, 0.6);
  transform: translateY(-6px);
}

/*ゆっくり色がつく*/
.deco-color a {
  transition: all 0.3s;
}
.deco-color a:hover {
  color: #b8b8b8;
}

/*青文字下線つき→下線が消える*/
.fo-link a {
  color: #2259c7;
  text-decoration: underline;
}
.fo-link a:hover {
  text-decoration: none;
}

.link a {
  position: relative;
  padding-right: 24px;
}
/*.link a::after{
	content: "";
	position: absolute;
	right: 0;
	top: 3px;
	display: inline-block;
	background-image: url("images/icon/link.svg");
	width: 14px;
	height: 14px;
	background-repeat: no-repeat;
	background-size: contain;
}*/

/*======================
more_btn
======================*/
.more_btn a {
  font-family: 'Zen Maru Gothic', sans-serif;
  width: 100%;
  max-width: 380px;
  display: inline-block;
  background-color: #eb9e8b;
  color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 6px 0 #ffd9cf;
}
.more_btn a::after {
  content: '';
  background: url('images/icon/arrow_right.svg') no-repeat center / contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.more_btn a:hover {
  transform: translateY(6px);
  box-shadow: 0 0 0 #ffd9cf;
}

@media only screen and (max-width: 430px) {
  .more_btn a {
    font-size: 18px;
  }
}

/*======================
list_dot 
======================*/
.list_dot li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
}
.list_dot li:last-child {
  margin-bottom: 0;
}
.list_dot li:before {
  content: '';
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.55em;
  background: #1d5ba1;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
}
@media only screen and (max-width: 767px) {
  .list_dot li {
    padding-left: 18px;
  }
  .list_dot li:before {
    width: 8px;
    height: 8px;
    top: 0.45em;
  }
}

/*======================
table
======================*/
.table {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  border-collapse: collapse;
}

.table th {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  background-color: #eee8db;
  border: 1px solid #978f7f;
}

.table td {
  display: block;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #978f7f;
  font-size: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (max-width: 767px) {
}

/*======================
form
======================*/

input[type='email'],
input[type='search'],
input[type='text'],
input[type='url'],
select,
textarea,
radio {
  -webkit-appearance: none;
}

input[type='submit'] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type='radio'] {
  width: auto !important;
  height: auto !important;
  position: relative;
  top: 2px;
  cursor: pointer;
}
input[type='checkbox'] {
  width: auto !important;
  position: relative;
  top: 2px;
  height: 15px !important;
  margin: 0 !important;
  margin-right: 6px !important;
}
@media only screen and (max-width: 767px) {
  /*	input[type="radio"]{
	width: 16px!important;
	height: 16px!important;
}
	input[type="checkbox"]{
		top: 4px;
    -webkit-transform: scale(1.2, 1.2)!important;
}*/
}

/*===========
フォーム全体
===========*/
.form {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.form .form_inner {
  /*	max-width: 630px;
	margin: 0 auto;*/
}

.form dl {
  display: block;
  margin-bottom: 50px;
}

.form dl dt {
  width: auto;
  font-size: 35px;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: baseline;
}
.form dl dd {
  width: 100%;
  font-size: 20px;
}

.flex_column {
  flex-flow: column;
  align-items: flex-start !important;
}
.flex_start {
  align-items: flex-start !important;
}
.flex_start dt {
  padding-top: 10px;
}

.form_name {
  padding-left: 10px;
}

@media only screen and (max-width: 780px) {
  .form {
    max-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .form dl {
    margin-bottom: 5rem;
  }
  .form dl dt {
    font-size: 16px;
  }
  .form dl dd {
    font-size: 16px;
  }
}

/*===========
必須・任意
===========*/
.hissu {
  display: inline-block;
  width: 60px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background-color: #b6402d;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-right: 25px;
}
.any {
  display: inline-block;
  width: 60px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background-color: #7c7c7c;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-right: 25px;
}

@media only screen and (max-width: 767px) {
  .hissu {
    width: 52px !important;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    margin-top: 3px;
    margin-right: 15px;
  }
  .any {
    width: 52px !important;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    margin-top: 3px;
    margin-right: 15px;
  }
}

/*===========
入力欄
===========*/
.form dl dd input {
  width: 100%;
  height: 120px;
  padding: 0 20px;
  background-color: #fff;
  border: 3px solid #9ebcee;
  font-size: 30px;
}

@media only screen and (max-width: 780px) {
  .form dl dd input {
    height: 9rem;
    font-size: 16px;
    padding: 0 12px;
  }
}

/*===========
日付
===========*/
.form dl dd input[type='date'] {
  width: 360px;
}

/*===========
セレクト　icon変更
===========*/
/*select{
	cursor: pointer;
		width: 410px;
	margin: 0 auto;
	padding: 15px 34px;
	background-color: #fff;
	font-size: 14px!important;
	border: 1px solid #aaaaaa;
	background-image: url( "../images/icon/icon_arrow_btm.svg");
	background-repeat: no-repeat;
	background-size: 13px 8px;
    background-position: right 7% top 50%;
}*/
.form dl dd select {
  cursor: pointer;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #b7b7b7;
  background-image: url('images/icon/arrow_btm.svg');
  background-repeat: no-repeat;
  background-size: 15px 9px;
  background-position: right 20px top 50%;
}

.time_select select {
  width: 266px !important;
  height: 60px;
  margin-right: 20px;
}
.time_select .flex_wrap {
  margin-right: auto;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .form dl dd select {
    height: 46px;
    background-size: 10px 6px;
    font-size: 14px;
  }
  .time_select select {
    width: 190px !important;
    height: 46px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 374px) {
  .time_select select {
    width: 100% !important;
    margin-right: 0;
  }
  .time_select .flex_wrap {
    display: block;
  }
}

/*===========
ラジオボタン
===========*/
/*.form .form-radio{
	display: flex;
}*/
.form .form-radio label {
  display: block;
  margin-right: 32px;
  cursor: pointer;
}
.form .form-radio textarea {
  width: 100%;
  height: 110px;
  margin-top: 12px;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
}

.form .form-radio .wpcf7-list-item {
  display: block;
}
.form .form-radio .wpcf7-list-item.first {
  margin: 0;
}
.form .form-radio .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  font-size: 16px;
}
/* デフォルトのボタン */
input[type='radio'] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
/* チェック前のボタン */
.form .form-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: '';
  height: 15px;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  width: 15px;
}
/* チェック後のボタン */
input[type='radio']:checked + .wpcf7-list-item-label::before {
  background-color: #345ccb; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}

@media only screen and (max-width: 767px) {
  .form .form-radio label {
    margin-right: 15px;
    margin-top: 0;
  }
  .form .form-radio .wpcf7-list-item-label {
    font-size: 16px; /* 項目のフォントサイズ */
  }
  .form .form-radio .wpcf7-list-item-label::before {
    height: 16px;
    width: 16px;
    margin-bottom: 4px;
    margin-right: 0.5em;
    margin-top: 6px;
  }
}

/*===========
チェックボックス
===========*/
.form .check_wrap {
  width: 375px;
  margin-bottom: 20px;
}
.form .form_check label {
  font-size: 16px;
  cursor: pointer;
  margin-right: 20px;
}

.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  margin: 0 30px 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px; /* 項目のフォントサイズ */
}
input[type='checkbox'] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #333;
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}
input[type='checkbox']:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url('images/icon/form_check.svg') no-repeat center;
  background-size: contain;
  content: '';
  width: 9px;
  height: 9px;
  left: 4px;
  position: absolute;
  top: 10px;
}
input[type='checkbox']:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #345ccb;
}

@media only screen and (max-width: 767px) {
  .form .check_wrap {
    width: 280px;
  }
  .form .form_check label {
    margin-right: 10px;
    font-size: 14px;
  }

  .form .form_check .wpcf7-list-item-label {
    font-size: 14px;
  }
  .wpcf7-list-item-label::before {
    width: 16px;
    height: 16px;
  }
  input[type='checkbox']:checked + .wpcf7-list-item-label::after {
    top: 7px;
  }
}
@media only screen and (max-width: 374px) {
  .form .check_wrap {
    width: 218px;
  }
}

/*===========
テキストエリア
===========*/
.form dl dd textarea {
  width: 100%;
  height: 240px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #9ebcee;
  font-size: 30px;
}

@media only screen and (max-width: 780px) {
  .form dl dd textarea {
    height: 24rem;
    font-size: 16px;
    padding: 12px;
  }
}

/*===========
プラボリ
===========*/
.form_policy {
  background-color: #fff;
  width: 100%;
  height: 240px;
  overflow-y: scroll;
  padding: 30px 15px;
  margin-bottom: 50px;
}

.form_policy .ttl {
  font-size: 30px;
}

.form_policy .policy_item {
  margin-bottom: 40px;
}
.form_policy .policy_item:last-of-type {
  margin-bottom: 0;
}

.form_policy .policy_item p {
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}

@media only screen and (max-width: 780px) {
  .form_policy {
    height: 160px;
    padding: 15px 15px;
    margin-bottom: 5rem;
  }
  .form_policy .ttl {
    font-size: 16px;
  }
  .form_policy .policy_item {
    margin-bottom: 20px;
  }
}

/*===========
送信ボタン
===========*/
.send-btn {
  width: 540px;
  height: 120px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

.form .send-btn input {
  font-family: 'M PLUS 1p', sans-serif;
  display: inline-block;
  width: 100%;
  height: 120px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(244, 92, 25, 1) 0%, rgba(224, 75, 76, 1) 50%, rgba(206, 0, 1, 1) 100%);
  box-shadow: 0px 12px 0px -6px rgba(168, 21, 21, 1);
}
.form .send-btn input:hover {
  transform: translate(0, 6px);
  box-shadow: 0 2px 0 rgba(168, 21, 21, 1);
}

@media only screen and (max-width: 780px) {
  .send-btn {
    max-width: 540px;
    width: 100%;
    height: 12rem;
    margin-top: 5rem;
  }
  .form .send-btn input {
    height: 12rem;
    font-size: 4rem;
  }
}

::placeholder {
  color: #8b8b8b;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #8b8b8b;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #8b8b8b;
}

/*.send-btn{
	overflow: hidden;
}*/

/*======================
conatcform7　ラジオボタンマージン無し
======================*/
.wpcf7-list-item {
  display: inline-block;
  margin: 0 !important;
}

/* .wpcf7:not(.time_select) p {
display: inline;
}*/

.no-number a {
  text-decoration: none !important;
}

.mw_wp_form .error {
  font-size: 14px !important;
}

.mwform-radio-field {
  margin-left: 0 !important;
}

/*.wpcf7 br{
	display: none!important;
}*/
.wpcf7 .screen-reader-response {
  overflow: auto;
  position: inherit !important;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  border-color: transparent !important;
  padding: 0 !important;
  margin: 20px 0 0 0 !important;
  color: #000;
  text-align: center;
  font-size: 14px;
}
.wpcf7-not-valid-tip {
  font-size: 14px !important;
}

.wpcf7-radio {
  /* display: flex!important;*/
  /* flex-direction: column!important;*/
}

@media only screen and (max-width: 768px) {
}

/*======================
inview
======================*/

.fadeIn_logo {
  opacity: 0;
  transition: 3s;
}
.fadeIn {
  opacity: 0;
  transition: 1.5s;
}
.fadeIn_35 {
  opacity: 0;
  transition: 3.5s;
}
.fadeIn_45 {
  opacity: 0;
  transition: 6.5s;
}
.fadeInTop {
  opacity: 0;
  transition: 2.5s;
}
.fadeIn_logo.is-show,
.fadeIn.is-show,
.fadeInTop.is-show,
.fadeIn_35.is-show,
.fadeIn_45.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 0.8s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.3s;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(5%, 0);
  transition: 0.8s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.4s;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-5%, 0);
  transition: 0.8s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.4s;
}

.fadeIn_logo {
  opacity: 0;
  transform: translate(-50%, -40%);
  transition: 1.5s;
}
.fadeIn_logo.is-show {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.fadein {
  opacity: 0;
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
}

.fadeInTrigger {
  opacity: 0;
}
.delay-time {
  animation-delay: 0.5s;
}

.delay0-5 {
  animation-delay: 0.5s;
}
.delay1s {
  animation-delay: 1s;
}
.delay1-5s {
  animation-delay: 1.5s;
}
.delay1-8s {
  animation-delay: 1.8s;
}
.delay2s {
  animation-delay: 2s;
}
.delay2-5s {
  animation-delay: 2.5s;
}
.delay3s {
  animation-delay: 3s;
}
.delay3-5s {
  animation-delay: 3.5s;
}
.delay4s {
  animation-delay: 4s;
}
.delay5s {
  animation-delay: 5s;
}
