@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
	--color-theme-primary: #3e9d9f;
	--color-theme-secondary: #cae3ee;
	--color-theme-white-blue: #cae3ee;
	--color-theme-light-blue: #3e9d9f;
	--color-theme-deep-blue: #3e9d9f;
	--color-theme-baby-blue: #cae3ee;
	--color-theme-white: #ffffff;
	--color-theme-brown: #A3771D;
	--color-theme-deep-brown: #63370D;
	--color-theme-orange: #f2940e;
	--color-theme-red: #e95145;
	--color-theme-black: #000;
	--color-theme-light-black: #333;
	--font-family-xxx: ;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: var(--color-theme-light-black);
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  body img {
    max-width: 100%;
  }
}

/* ========== end △ */
/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: var(--color-theme-light-black);
  overflow: hidden;
  font-size: 15px;
  min-width: 1260px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #wrapper {
    min-width: 320px;
  }
}

/* ========== end △ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-y: auto;
  line-height: normal;
}

/* font-family: 'Lato', sans-serif; */
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", 'Noto Sans JP', "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

a {
  color: var(--color-theme-light-black);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* サイト幅
-------------------------------------------------- */
.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

/* ▽ PC-TAB layout ========== */
@media print,
screen and (min-width: 768px) {
  .container {
    max-width: 950px;
    margin: 0 auto;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

/* ========== end △ */
/* ==================================================
	header
================================================== */
@media print,
screen and (min-width: 768px) {
  #header {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    height: 100vh;
    background: var(--color-theme-primary);
    width: 270px;
    overflow-x: hidden;
    overflow-y: auto;
    /* padding-top: 30px; */
  }
}

#header .sp_header {
  /*min-width: 320px;*/
  background-color: #fff;
  padding-top: 30px;
  margin-bottom: 20px;
}

#header .sp_header > a {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 35px;
}

#header .wrap_hamberger {
  display: none;
}

#header .content .h_menu {
  margin-bottom: 35px;
}

#header .content .h_menu>ul {
  border-top: 1px solid var(--color-theme-white-blue);
}

#header .content .h_menu>ul>li {
  position: relative;
}

#header .content .h_menu>ul>li>a {
  border-bottom: 1px solid var(--color-theme-white-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 10px 10px 10px 40px;
  font-size: 17px;
  font-weight: bold;
  color: var(--color-theme-white);
  -webkit-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

#header .content .h_menu .sub_menu ul li a,
#header .content .h_menu .h_hover a:hover .sub_menu {
  width: 250px;
}

#header .content .h_menu .sub_menu {
  position: fixed;
  left: 270px;
  width: 0;
  overflow: hidden;
  top: 236px;
  -moz-transition: width .2s ease-out;
  -webkit-transition: width .2s ease-out;
  transition: width .2s ease-out;
}


#header.is-visible .content .h_menu .sub_menu.active {
  width: 220px;
  /*-webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  display: block;
  opacity: 1;
  visibility: visible; */
}

#header .content .h_menu .sub_menu ul li a {
  display: block;
  padding: 10px 10px;
  text-decoration: none;
  background: #027157;
  border-bottom: 1px solid #09886a;
  color: var(--color-theme-white);
  font-weight: bold;
}

#header .content .h_menu>ul>li>a:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10px;
  height: 100%;
  position: absolute;
  left: 20px;
  top: 0;
  font-family: "FontAwesome";
  content: "\f105";
  color: var(--color-theme-white-blue);
  font-weight: normal;
}

#header .content .h_menu ul li a:hover {
  background-color: var(--color-theme-black);
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

#header .content .h_login {
  padding: 0 20px;
}

#header .content .h_login ul li {
  margin-bottom: 10px;
}

#header .content .h_login ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 0 4px;
  background-color: var(--color-theme-deep-blue);
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

#header .content .h_login ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  background: var(--color-theme-white);
  padding: 10px 10px 10px 60px;
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all ease 0.1s;
  -o-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

#header .content .h_login ul li.mypage_icon a span {
  padding-left: 60px;
  background: var(--color-theme-white) url(../common_img/h_icon1.png) no-repeat left 15px center;
}

#header .content .h_login ul li.mypage_icon a:hover {
  background: none;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#header .content .h_login ul li.mypage_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon1.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.login_icon a span {
  background: var(--color-theme-white) url(../common_img/h_icon2.png) no-repeat left 15px center;
}

#header .content .h_login ul li.change_icon a span {
  background: var(--color-theme-white) url(../common_img/h_icon22.png) no-repeat left 15px center;
}

#header .content .h_login ul li.cart_icon a span {
  background: var(--color-theme-white) url(../common_img/h_icon3.png) no-repeat left 15px center;
}

#header .content .h_login ul li.login_icon a:hover {
  background: none;
}

#header .content .h_login ul li.login_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon2.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}




#header .content .h_login ul li.left_menu_one a span {
  background: var(--color-theme-white) url(../common_img/h_icon6.png) no-repeat left 15px center;
}

#header .content .h_login ul li.left_menu_one a:hover {
  background: none;
}

#header .content .h_login ul li.left_menu_one a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon6.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}




#header .content .h_login ul li.change_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon22.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.cart_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon3.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.logout1 a span {
  background: var(--color-theme-white) url(../common_img/logout1.png) no-repeat left 15px center;
}

#header .content .h_login ul li.logout1 a:hover {
  background: none;
}

#header .content .h_login ul li.logout1 a:hover span {
  background: var(--color-theme-orange) url(../common_img/logout1.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.logout1 p {
  color: var(--color-theme-orange);
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}

#header .content .h_login ul li.logout2 a span {
  background: var(--color-theme-white) url(../common_img/logout2.png) no-repeat left 15px center;
}

#header .content .h_login ul li.logout2 a:hover {
  background: none;
}

#header .content .h_login ul li.logout2 a:hover span {
  background: var(--color-theme-orange) url(../common_img/logout2.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.subscript_icon a span {
  background: var(--color-theme-white) url(../common_img/h_icon4.png) no-repeat left 15px center;
}

#header .content .h_login ul li.subscript_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon4.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.monthly_icon a span {
  padding-left: 50px;
  background: var(--color-theme-white) url(../common_img/h_icon4.png) no-repeat left 15px center;
}

#header .content .h_login ul li.monthly_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon4.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.regist_icon a span {
  padding-left: 50px;
  background: var(--color-theme-white) url(../common_img/h_icon1.png) no-repeat left 15px center;
}

#header .content .h_login ul li.regist_icon a:hover {
  background: none;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#header .content .h_login ul li.regist_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon1.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}


#header .content .h_login ul li.admin_icon a span {
  padding-left: 50px;
  background: var(--color-theme-white) url(../common_img/h_icon5.png) no-repeat left 15px center;
}

#header .content .h_login ul li.admin_icon a:hover {
  background: none;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#header .content .h_login ul li.admin_icon a:hover span {
  background: var(--color-theme-orange) url(../common_img/h_icon5.png) no-repeat left 15px center;
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  color: var(--color-theme-black);
}

#header .content .h_login ul li.cart_icon p {
  color: var(--color-theme-orange);
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}

#header .content .h_movie {
  padding: 10px 20px 0;
  text-align: center;
}

#header .content .h_movie img {
  width: 50%;
}

#header .content .h_movie p {
  color: var(--color-theme-white);
  font-size: 12px;
  padding-left: 1em;
  margin-top: 5px;
  text-align: center;
}


/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #header .content .h_menu .sub_menu {
    position: relative;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 0;
    top: inherit;
    opacity: 1;
    visibility: visible;
    overflow: auto;
    width: 100%;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    display: none;
  }

  #header .content .h_menu .sub_menu ul li a,
  #header .content .h_menu .h_hover a:hover .sub_menu {
    width: 100%;
  }

  #header {
    background: none;
    width: 100%;
    height: 67px;
    padding-top: 0;
  }

  #header .content .h_menu>ul>li.h_hover>a:before {
    content: "\f107";
  }

  #header .content .h_menu>ul>li.h_hover>a.opened:before {
    content: "\f106";
  }

  #header .sp_header {
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--color-theme-white);
    border-bottom: 1px solid var(--color-theme-secondary);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #header .sp_header>a {
    margin-left: 0;
    margin-bottom: 0;
  }

  #header .sp_header>a img {
    height: 40px;
  }

  #header .sp_header .wrap_hamberger {
    position: relative;
    z-index: 2;
    display: block;
  }

  #header .content {
    padding: 20px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: var(--color-theme-primary);
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    opacity: 0;
    visibility: hidden;
  }

  #header .content.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    position: fixed;
    z-index: 99;
    top: 64px;
    height: 100vh;
    width: 100%;
  }

  #header .content.show .sp_scroll {
    height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #header .content .h_login {
    padding: 0;
  }

  #header .content .h_movie {
    padding: 20px 0 0 0;
  }

  #header .content .h_login ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #header .content .h_login ul li {
    width: 48%;
  }

  /* ▽ SP layout ========== */
}

@media only screen and (max-width: 767px) and (max-width: 620px) {
  #header .content .h_login ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #header .content .h_login ul li {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  /* ========== end △ */
}

/* ========== end △ */
/* ==================================================
	main
================================================== */
#main {
  margin-left: 270px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #main {
    margin-left: 0;
    padding-top: 30px;
    /*padding-top: 87px;*/
  }
}

/* ========== end △ */
/* ==================================================
	content_area
================================================== */
/* title set
-------------------------------------------------- */
/* ==================================================
	main_content
================================================== */
/* section set
-------------------------------------------------- */
/* ==================================================
	aside_area
================================================== */
/* ==================================================
	page_top
================================================== */

/* ==================================================
	footer
================================================== */
#footer {
  position: relative;
  background: var(--color-theme-light-black);
  padding: 55px 0;
}

#footer .f_sec .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#footer .f_sec .container ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 10px 10px 10px 40px;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-theme-white);
  -webkit-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

#footer .f_sec .container ul li a:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10px;
  height: 100%;
  position: absolute;
  left: 20px;
  top: 0;
  font-family: "FontAwesome";
  content: "\f105";
  color: var(--color-theme-light-blue);
  font-weight: normal;
}

#footer .f_sec .container ul li a:hover {
  color: var(--color-theme-primary);
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

@media print,
screen and (min-width: 768px) {
  #footer {
    position: sticky;
    top: 100vh;
    width: 100%;
  }
}


/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer {
    padding: 40px 0;
  }

  #footer .f_sec .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #footer .f_sec .container ul {
    width: 50%;
    margin-bottom: 30px;
  }

  #footer .f_sec .container ul li a {
    padding: 5px 5px 5px 40px;
  }

  #footer .f_sec .container figure {
    width: 50%;
    text-align: center;
  }
}

/* ========== end △ */
/*====================================================================================
■02.CLEAR FLOAT
====================================================================================*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*====================================================================================
■03.MARGIN DEFAULT
====================================================================================*/
/* margin */
.mat {
  margin: auto !important;
}

.m00 {
  margin: 0px !important;
}

.m05 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.m85 {
  margin: 85px !important;
}

.m90 {
  margin: 90px !important;
}

.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml00 {
  margin-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

/* margin */
/* padding */
.p00 {
  padding: 0px !important;
}

.p05 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.p55 {
  padding: 55px !important;
}

.p60 {
  padding: 60px !important;
}

.p65 {
  padding: 65px !important;
}

.p70 {
  padding: 70px !important;
}

.p75 {
  padding: 75px !important;
}

.p80 {
  padding: 80px !important;
}

.p85 {
  padding: 85px !important;
}

.p90 {
  padding: 90px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr00 {
  padding-right: 0px !important;
}

.pr05 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pl90 {
  padding-left: 90px !important;
}

/* padding */
/* font */
.f10 {
  font-size: 10px !important;
}

.f11 {
  font-size: 11px !important;
}

.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

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

.f15 {
  font-size: 15px !important;
}

.f16 {
  font-size: 16px !important;
}

.f17 {
  font-size: 17px !important;
}

.f18 {
  font-size: 18px !important;
}

.f19 {
  font-size: 19px !important;
}

.f20 {
  font-size: 20px !important;
}

.f21 {
  font-size: 21px !important;
}

.f22 {
  font-size: 22px !important;
}

.f23 {
  font-size: 23px !important;
}

.f24 {
  font-size: 24px !important;
}

/*■05.FLEX*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */
}

/*justify-content*/
.flex_jus_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex_jus_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex_jus_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex_jus_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex_jus_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex_jus_ini {
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial;
}

/*align-items*/
.flex_align_item_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
}

.flex_align_item_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex_align_item_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}

.flex_align_item_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex_align_item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex_align_item_ini {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial;
}

.flex_container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*====================================================================================
■06.OTHER
====================================================================================*/
.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

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

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

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

.text-underline {
  text-decoration: underline;
}

.text-none-underline {
  text-decoration: none !important;
}

.font14 {
  font-size: 14px;
}

.font11 {
  font-size: 11px;
}

.add_font {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.add_font2 {
  font-family: 'Oswald', sans-serif;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.media,
.media-body {
  overflow: hidden;
}

.media>.pull-left {
  margin-right: 20px;
}

.media>.pull-right {
  margin-left: 20px;
}

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden;
}

/*====================================================================================
■07.PAGE UP
====================================================================================*/
footer .page_up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 999;
}

footer .page_up button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 4px solid var(--color-theme-primary);
  background-color: var(--color-theme-white);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  cursor: pointer;
}

footer .page_up button i {
  font-size: 20px;
  color: var(--color-theme-primary);
}

footer .page_up button:hover {
  background-color: var(--color-theme-primary);
}

footer .page_up button:hover i {
  color: var(--color-theme-white);
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  footer .page_up {
    width: 50px;
    height: 50px;
    bottom: 3% !important;
  }

  footer .page_up button {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-theme-primary);
  }
}

/* ========== end △ */
/*==========================================
■8.Title cm
====================================================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p,
dd,
figure {
  padding: 0;
  margin: 0;
}

em {
  font-style: normal;
}

html {
  /* scroll-behavior: smooth; */
  scroll-padding-top: 20px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 7%;
  }
}

/* ========== end △ */
dl {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.cm_tt1 {
  margin-bottom: 20px;
  position: relative;
}

.cm_tt1.center {
  text-align: center;
}

.cm_tt1:last-child {
  margin-bottom: 0;
}

.cm_tt1 a {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
}

.cm_tt1 span {
  font-family: "Lato";
  font-size: 16px;
  color: var(--color-theme-primary);
  display: block;
}

.cm_tt1 strong {
  font-size: 29px;
  line-height: 1.5;
}

.cm_tt1.spec strong {
  display: inline-block;
  position: relative;
  -webkit-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.cm_tt1.spec strong:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10px;
  height: 100%;
  position: absolute;
  right: -30px;
  top: 0;
  font-family: "FontAwesome";
  content: "\f138";
  color: var(--color-theme-primary);
  font-weight: normal;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.cm_tt1.spec:hover {
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.cm_tt1.spec:hover strong {
  color: var(--color-theme-primary);
}

.cm_tt1.spec:hover strong:before {
  right: -40px;
  opacity: 0;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_tt1 span {
    font-size: 14px;
  }

  .cm_tt1 strong {
    font-size: 24px;
  }
}

/* ========== end △ */
.cm_tt3 {
  margin-bottom: 15px;
}

.cm_tt3 span {
  font-size: 16px;
  color: var(--color-theme-white);
  background: var(--color-theme-red);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  position: relative;
}

.cm_tt3 span:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0px;
  left: 0;
  margin: auto;
  bottom: -20px;
  font-family: "FontAwesome";
  content: "\f0d7";
  color: var(--color-theme-red);
  font-size: 20px;
  font-weight: normal;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.cm_tt3 strong {
  font-size: 22px;
  display: block;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_tt3 span {
    font-size: 14px;
  }

  .cm_tt3 strong {
    font-size: 20px;
  }

  .cm_tt3 strong br {
    display: nmone;
  }
}

/* ========== end △ */
.cm_tt4 {
  background: #f2940e;
  font-size: 22px;
  padding: 5px 0;
  border-radius: 30px;
  text-align: center;
  color: var(--color-theme-white);
  margin-bottom: 20px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_tt4 {
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 100px;
  }
}

/* ========== end △ */
.cm_tt2 {
  margin-bottom: 10px;
}

.cm_tt2 span {
  display: inline-block;
  font-size: 22px;
  position: relative;
}

.cm_tt2 span:after {
  display: block;
  width: 45px;
  background: var(--color-theme-primary);
  border-radius: 2px;
  height: 4px;
  margin: 5px 0;
  content: "";
}

.cm_line {
  border-radius: 20px;
  border: 4px solid var(--color-theme-primary);
  padding: 40px 40px;
  background: var(--color-theme-white);
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_line {
    border-radius: 10px;
    border: 2px solid var(--color-theme-primary);
    padding: 20px;
  }
}

/* ========== end △ */
.cm_line2 {
  border-radius: 20px;
  padding: 40px 40px;
  background: #dff1ed;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_line2 {
    border-radius: 10px;
    padding: 20px;
  }
}

/* ========== end △ */
.cm_layout1 {
  padding: 50px 0;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_layout1 {
    padding: 40px 0;
  }
}

/* ========== end △ */
.cm_layout1:first-child {
  padding-top: 0px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_layout1:first-child {
    padding-top: 0px;
  }
}

/* ========== end △ */
.cm_tt5 {
  text-align: center;
  margin-bottom: 40px;
}

.cm_tt5 span {
  font-weight: bold;
  font-size: 36px;
  display: inline-block;
}

.cm_tt5 span:after {
  display: block;
  content: "";
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-theme-primary);
  position: relative;
  margin: 10px auto 0;
}

.cm_tt5.center {
  text-align: left;
  margin-bottom: 20px;
}

.cm_tt5.center span {
  font-size: 22px;
}

.cm_tt5.center span:after {
  margin-left: 0;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm_tt5 span {
    font-size: 25px;
  }
}

/* ========== end △ */
.btn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn1.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.btn1 a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  min-width: 80px;
  font-weight: bold;
  padding-right: 25px;
  font-size: 20px;
}

.btn1 a:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0;
  font-family: "FontAwesome";
  content: "\f138";
  color: var(--color-theme-primary);
  font-weight: normal;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.btn1 a:hover {
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.btn1 a:hover strong {
  color: var(--color-theme-primary);
}

.btn1 a:hover strong:before {
  right: -40px;
  opacity: 0;
}

.btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn2.small_green a {
  min-width: 110px;
}

.btn2.small_green a span {
  padding: 5px;
  background: #f1f6f5;
  font-size: 12px;
  font-weight: normal;
}

.btn2.disable {
  pointer-events: none;
}

.btn2.gray1 {
  margin-bottom: 30px;
}

.btn2.gray1 a {
  background: #c0c0c0;
}

.btn2.gray1 a span {
  background: #eeeeee;
}

.btn2.green {
  margin-bottom: 30px;
}

.btn2.green a span {
  color: var(--color-theme-white);
  background-color: var(--color-theme-primary);
}

.btn2.small_white a {
  min-width: 110px;
}

.btn2.small_white a span {
  color: var(--color-theme-light-black);
  padding: 5px;
  font-size: 12px;
  font-weight: normal;
}

.btn2.small_yellow a {
  min-width: 110px;
  color: var(--color-theme-white);
}

.btn2.small_yellow a span {
  background: var(--color-theme-brown);
  padding: 5px;
  font-size: 12px;
  color: var(--color-theme-white);
  font-weight: normal;
}

.btn2.small_yellow a:hover span {
  background: var(--color-theme-brown);
  color: var(--color-theme-black);
}

.btn2.done span {
  color: var(--color-theme-red);
  font-weight: bold;
}


.btn2.small_red a {
  min-width: 110px;
  background: var(--color-theme-red);
  color: var(--color-theme-white);
}

.btn2.small_red a span {
  background: var(--color-theme-red);
  color: var(--color-theme-white);
  padding: 5px;
  font-size: 12px;
  font-weight: normal;
}

.btn2.small_red a:hover span {
  background: var(--color-theme-red);
  color: var(--color-theme-white);
}

.btn2.small_blue a {
  min-width: 110px;
  background: #366fc8;
  color: var(--color-theme-white);
}

.btn2.small_blue a span {
  background: #4585e9;
  color: var(--color-theme-white);
  padding: 5px;
  font-size: 12px;
  font-weight: normal;
}

.btn2.small_blue a:hover span {
  background: #0060f7;
  color: var(--color-theme-white);
}


.btn2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 0 4px;
  background-color: var(--color-theme-deep-brown);
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all ease 0.01s;
  -o-transition: all ease 0.01s;
  transition: all ease 0.01s;
  min-width: 360px;
}

.btn2 a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-theme-white);
  padding: 15px;
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all ease 0.1s;
  -o-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

.btn2 a:hover {
  background: none;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.btn2 a:hover span {
  background-color: var(--color-theme-deep-blue);
  color: var(--color-theme-white);
  margin-bottom: -3px;
  margin-top: 3px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.btn2.arrow {
  margin: 40px 0;
}

.btn2.arrow.white a span {
  background: var(--color-theme-white);
}

.btn2.arrow.white a:before {
  color: var(--color-theme-primary);
}

.btn2.arrow a {
  position: relative;
}

.btn2.arrow a span {
  background: var(--color-theme-brown);
}

.btn2.arrow a:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10px;
  height: 100%;
  position: absolute;
  right: 30px;
  top: 0;
  font-family: "FontAwesome";
  content: "\f138";
  color: var(--color-theme-light-black);
  font-weight: normal;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 3;
  font-size: 16px;
}

.btn2.arrow a:hover {
  bottom: 0px;
}

.btn2.arrow a:hover:before {
  margin-top: 4px;
  color: var(--color-theme-white);
}

.btn2.arrow a:hover span {
  background-color: var(--color-theme-deep-blue);
  color: var(--color-theme-white);
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .btn2 a {
    min-width: 100%;
  }

  .btn2 a span {
    padding: 10px;
  }

  .btn1 a {
    padding-right: 37px;
  }

  .btn1 a:before {
    right: 20px;
  }
}

/* ========== end △ */
.btn2.yellow2 a {
  background: #b5001d;
}

.btn2.yellow2 a span {
  background: #ff3051;
  color: var(--color-theme-white);
}

.btn2.blue2 a {
  background: #1d6abe;
}

.btn2.blue2 a span {
  background: #3885da;
  color: var(--color-theme-white);
}

.btn2.gray2 a {
  background: #c47708;
}

.btn2.gray2 a span {
  background: #f2940e;
  color: var(--color-theme-white);
}

.btn2.yellow2 a:hover {
  background: none;
}

.btn2.blue2 a:hover {
  background: none;
}

.btn2.gray2 a:hover {
  background: none;
}

.line1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.line1 .btn2 {
  margin: 0 0 1%;
  width: 49.5%;
}

.line1 .btn2 a {
  width: 100%;
}

.line2 .btn2 {
  margin-bottom: 1%;
}

.line2 .btn2 a {
  width: 100%;
}
