@charset "UTF-8";

html {
  font-size: 100%;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
    overflow-x: hidden;
}

a:hover,
button:hover {
  cursor: pointer;
}

/*
***************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
****************************
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li{
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media screen and (max-width: 767px) {
    .pc-only{display: none!important;}
}
@media screen and (min-width: 768px) {
    .sp-only{display: none!important;}
}

/*header*/
header{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
.header__inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.header__logo{
    width: 21.875vw;
    padding-left: 3.28125vw;
    display: flex;
    align-items: flex-end;
}
.header__logo .header_site_name{
    font-size: 0.8333333333333334vw;
    font-weight: 300;
    margin-left: 2em;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 800px) {
    .header__logo{
        width: 20vw;
        padding-right: 3.28125vw;
        display:block;
        text-align: center;
    }
    .header__logo .header_site_name{
        margin-bottom: 0;
        margin-left: 0;
    }
}
.header__menu{
    width: 78.125vw;
    height: 6rem;
    background: #FE9301;
    display: flex;
    justify-content:flex-end;
    list-style: none;
}
.header__menu li{
    height: 100%;
    border-left: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.739583333333334vw;
}
.header__menu li:last-child{
    width: 14.479166666666668vw!important;
}
.header__menu li:hover{
    color: #fff;
    transition: all 0.3s;
}
.header__menu .header_entry-btn{
    width: 12.395833333333334vw;
border-radius: 5px;
background: #ff0;
    font-size: 1.1979166666666667vw;
    text-align: center;
    padding: .8em 0;
}
.header__menu .header_entry-btn:hover{
    background: #EF6500;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
    .header_sp__inner{
        width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
        z-index: 100;
    }
    .header__logo{
    width: 75vw;
    display: flex;
    align-items: flex-end;
        padding-top: .5em;
}
.header__logo .header_site_name{
    font-size: 3vw;
    font-weight: 300;
    margin-bottom: 0;
}
    /*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 999;
  right : 20px;
  top   : 15px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 101;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba( 254,147,1,1 );
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
  height: 100%;
}

nav.globalMenuSp ul {
  margin: 2em auto 0;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}
}


/*footer*/
footer{
    width: 100%;
    margin-top: 100px;
}
.footer__main{
    background: #FE9301;
    padding: 3em 0;
    text-align: center;
}
.footer__main .footer-chachcopy{
    font-size: 2.604166666666667vw;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1em;
}
.footer__main .footer-subcopy{
    font-size:1.25vw;
    font-weight: bold;
    line-height: 1.5;
}
.footer__main .footer_entry_btn{
    max-width: 25.885416666666668vw;
    margin: 2em auto 0;
border-radius: 60px;
background: #ff0;
    padding: 1em 0;
    font-size: 1.5625vw;
    font-weight: bold;
}
.footer__main .footer_entry_btn:hover{
    background: #EF6500;
  transition: all 0.3s;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .footer__main{
        padding: 2em 0 1.5em;
    }
    .footer__main .footer-chachcopy{
        font-size: 5.5vw;
    }
    .footer__main .footer-subcopy{
    font-size:3vw;
    line-height: 2;
}
    .footer__main .footer_entry_btn{
        max-width: 85vw;
        font-size: 4vw;
    }
}

.footer__bottom{
    width: 100%;
    text-align: center;
    padding: 1.5em 0 1em;
    position: relative;
}
.footer__logo{
    position: absolute;
    left: 1.5em;
    top: 1.5em;
    z-index: 1;
}
.footer__logo img{
    width: 13.854166666666668vw;
}
.footer__right .footer-menu{
    display: flex;
    justify-content: center;
    list-style: none;
}
.footer__right .footer-menu li{
    font-size: 0.9375vw;
    padding: 0 1.5em;
    margin-bottom: 4em;
}
.footer__right .footer-menu li:hover{
    color: #999999;
    transition: all 0.3s;
}
.footer__right .footer-menu li+ li{
    border-left: 1px solid #999999;
}
.footer__right .footer__copyright{
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    .footer__logo{
    position:static;
        margin-bottom: 2em;
}
    .footer__logo img{
    width: 40vw;
}
    .footer__right .footer-menu{
        display:block;
        margin-bottom: 3em;
    }
    .footer__right .footer-menu li{
        font-size: 4vw;
        margin-bottom: 1em;
    }
    .footer__right .footer-menu li+ li{
    border-left: none;
}
}

#pagetop {
    position: fixed;
    right: -80px;
    bottom: 10px;
    margin: 0;
    
}
#pagetop a{
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    background: #333333;
    transition: opacity .6s ease;
    color: #FFFFFF;
    align-items: center;
    text-decoration: none;
    font-size: 50px;
    border-radius:15px
}
#pagetop a:hover {
    opacity: .3;
}
@media screen and (max-width:767px) {
#pagetop a {
    width: 50px;
    height: 50px;
}
}

.lower_main_title_area{
    max-width: 62.239583333333336vw;
    margin: 0 auto;
    padding: 3em 0;
}
.lower_main_title_L{
    font-size: 4.166666666666666vw;
    line-height: 1.2;
    position:  relative;
    display:  inline-block;
    z-index: 1;
}
.lower_main_title_L:after{
    content:  '';
    background-color: #FE9301;
    display:  block;
    position:  absolute;
    right:  -0.3em;
    height: 90px;
    width: 80px;
    top: 0;
    transform:skew(-25deg,0deg);
    z-index:  -1;
}
.lower_main_title_M{
    font-size: 1.0416666666666665vw;
    color: #FE9301;
}
@media screen and (max-width:800px) {
    .lower_main_title_area{
        max-width: 85vw;
        padding: 1.5em 0;
    }
    .lower_main_title_L:after{
        height: 50px;
    width: 40px;
    }
}
@media screen and (max-width:480px) {
    .lower_main_title_area{
    max-width: 85vw;
    margin: 0 auto;
    padding: .5em 0;
}
    .lower_main_title_L:after{
        height: 20px;
    width: 15px;
    }
}

.breadcrumb-box{
    max-width: 62.239583333333336vw;
    margin: 0 auto;
}
.breadcrumb {
  font-size: 0.8em;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "〉";
  margin: 0 .6em 0 1em;
  color: #000;
}
.breadcrumb a {
  color: #FE9301;
  text-decoration: none;
}
.breadcrumb-mt3{
    padding-top: 1em;
}
@media screen and (max-width:800px) {
    .breadcrumb-box{
    max-width: 85vw;
}
}
@media screen and (max-width:480px) {
    .breadcrumb {
        font-size: 0.5em;}
}

.row-reverse{
    flex-direction: row-reverse;
}