@charset "UTF-8";

/*外部font読み込み*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&family=Open+Sans:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC&display=swap');


/*--------------------共通--------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
	font-variant-ligatures: none;
    /*-webkit-backface-visibility: hidden;
    backface-visibility: hidden; */
    -webkit-appearance: none;
}

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 {
    font-weight: initial;
}

nav ul,
li{
    list-style:none;
}

a {
    text-decoration: none;
}

input:focus,
textarea:focus {
    outline: none;
}

/* Setting-basic
---------------------------------------*/
body {
    font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴシック ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 400;
    color: #000;
    font-size: 14px;
    letter-spacing: 0em;
}
@media all and (min-width:681px){
  body {
    min-width: 1000px;
    overflow-x: hidden;
  }
  .drawer--navbarTopGutter {
      padding-top: 110px;
  }
}

@media all and (min-width:681px) and (max-width: 1000px){
  body {
      /* min-width: 1000px; */
      /* overflow-x: hidden; */
      min-width: 100%;
      overflow-x: scroll;
  }
}

/* Font
---------------------------------------*/
.sans {
    font-family:  'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴシック ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 400;
}
.serif{
      font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	  font-weight: 500;
}

.fo_open{
	font-family: 'Open Sans', sans-serif;
}

/*.fo_osw {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
*/


/* Image
---------------------------------------*/
img {
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* Link
---------------------------------------*/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}
a:active,
a:focus {
    outline: none;
}
a img {
  transition: 0.3s ease;
}

a.arrow_link,
a.arrow_link2,
a.arrow_link3{
  position: relative;
}
a.arrow_link::before {
    content: '';
    width: 1.36em !important;
    height: 1.36em !important;
    background-image: url(../img/common/arrow_p.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s ease;
    margin-top: 0.02em !important;
}
a.arrow_link2::before {
    content: '';
    width: 1.36em !important;
    height: 1.36em !important;
    background-image: url(../img/common/arrow_w.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s ease;
    margin-top: 0.02em !important;
}
a.arrow_link3::before {
    content: '';
    width: 1.36em !important;
    height: 1.36em !important;
    background-image: url(../img/common/arrow_ww.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s ease;
    margin-top: 0.02em !important;
}

.more_btn{
  position: relative;
  font-size: 14px;
  color: #fa858e;
  padding-right: 30px;
  margin-left: 30px;
}

@media all and (min-width: 681px) {
  a:hover img{
    opacity: 0.7;
  }
  a.arrow_link:hover::before,
  a.arrow_link2:hover::before,
  a.arrow_link3:hover::before{
      transform: translateY(-50%) translateX(5px);
  }
  a[class^="arrow_link"]:hover img {
    opacity: 1;
  }
}



.hide_txt{
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
    display: block;
}


/*pc sp only*/

@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
}
@media all and (max-width:680px) {
  .noneSP {
    display: none !important;
  }
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}



/* Common
***************************************************************/

.pagetop-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.pagetop_btn {
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 100;
}
.scroller .pagetop_btn{
  opacity: 1;
  pointer-events: initial;
  cursor: pointer;
  transition: .3s ease;
}

@media all and (min-width:681px){
  .inner{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width:680px){
  .inner {
      width: auto;
      margin-left: 8%;
      margin-right: 8%;
  }
  .pagetop_btn {
      bottom: 10px;
      right: 10px;
  }
}


header{
	height: 110px;
}
header.en_header{
	height: 80px;
}
.drawer-navbar .drawer-navbar-header {
    background-color: #fff;
    text-align: initial;
    height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    /*padding-right: 10px;
    padding-left: 10px;*/
}
.drawer-navbar.en_header .drawer-navbar-header {
    height: 80px;
}
.gnaviWrap .drawer-nav{
    display: flex;
    flex-direction: column;
}
header h1{
  width: 100%;
  height: auto;
}
header h1 a{
	display: block;
	width: 100%;
	/*height: 63px;*/
  height: auto;
}

.gnaviWrap_top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}
.lang_menu_wrap{
  position: relative;
  /*z-index: 110;*/
}
.lang_menu_wrap::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5.5px 0 5.5px;
  border-color: #999 transparent transparent transparent;
  right: 15px;
  top:50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.lang_menu {
    width: 150px;
    line-height: 40px;
    margin-bottom: 4px;
    padding-left: 1em;
    border-color: #999;
    color: #999;
    font-size: 14px;
    outline: none;
    position: relative;
    cursor: pointer;
    border-radius: 0;
    background-color: #fff;
}

.lang_wrap {
    display: flex;
    margin-left: auto;
}
.lang_wrap a {
    color: #90b742;
    background-color: #f3f3f3;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
}

/*google検索*/
.gsc-control-cse { padding: 0 !important; background: none !important; border: none !important; position: relative; z-index: 99; }

.gsc-control-cse table.gsc-search-box { margin-bottom: 0; }

.gsc-control-cse table.gsc-search-box td { height: 33px; }

.gsc-control-cse table.gsc-search-box td.gsc-input { padding-right: 0 !important; }

.gsc-control-cse table.gsc-search-box td.gsc-search-button { display: table-cell !important; }

.gsc-control-cse table.gsc-search-box .gsib_a { padding: 0 0 0 15px !important; color: #999; }

/* ---------------------- */
/* 検索バー対応 */
.gsc-control-cse table.gsc-search-box .gsc-input-box { background: #fff !important; padding: 0 !important; border-radius: 50px 0 0 50px !important; border: 1px solid #999 !important; border-right: none !important; height: 38px; }

.gsc-control-cse form.gsc-search-box { font-size: 13px; margin: 0; width: 100%; max-width: stretch; }

.gsc-control-cse table.gsc-search-box #gsc-i-id1 { background-color: #fff !important; height: 24px !important; margin: 0 !important; width: 138px !important; }

.gsib_b { box-sizing: content-box; height: 28px; width: 48px; padding: 4px 4px 4px 0; }

.gsc-control-cse table.gsc-search-box .gscb_a { line-height: 30px !important; font-size: x-large !important; background: none; }

.gsst_a .gscb_a { color: #999 !important; cursor: pointer; } 

.gsc-search-button { margin-left: 2px; }

@media only screen and (max-width: 749px) { header #h-inner #h-sub-nav ul li.p-search .g_search { padding: 5%; } }
/* ---------------------- */

@media only screen and (max-width: 749px) { .gsc-control-cse table.gsc-search-box #gsc-i-id1 { width: 70vw !important; } }

.gsc-control-cse table.gsc-search-box #gsc-i-id1::-webkit-input-placeholder { font-family: "Noto Sans JP" !important; font-size: 13px; color: #999; font-weight: 600; }

.gsc-control-cse table.gsc-search-box #gsc-i-id1:-ms-input-placeholder { font-family: "Noto Sans JP" !important; font-size: 13px; color: #999; font-weight: 600; }

.gsc-control-cse table.gsc-search-box #gsc-i-id1::-ms-input-placeholder { font-family: "Noto Sans JP" !important; font-size: 13px; color: #999; font-weight: 600; }

.gsc-control-cse table.gsc-search-box #gsc-i-id1::placeholder { font-family: "Noto Sans JP" !important; font-size: 13px; color: #999; font-weight: 600; }

.gsc-control-cse table.gsc-search-box .gsst_b { padding: 0 !important; }

.gsc-control-cse table.gsc-search-box .gsc-search-button-v2 { display: block !important; margin-left: 0 !important; padding: 0 18px 0 10px !important; height: 38px !important; border-top: 1px solid #999 !important; border-right: 1px solid #999 !important; border-bottom: 1px solid #999 !important; border-left: none !important; border-radius: 0 50px 50px 0 !important; background-color: #fff !important; outline: 0 !important; cursor: pointer; -webkit-transition: 0.3s ease; -o-transition: 0.3s ease; transition: 0.3s ease; }

.gsc-control-cse table.gsc-search-box .gsc-search-button-v2 svg { fill: #999 !important; -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); }

.gsc-control-cse table.gsc-search-box .gsc-results-wrapper-overlay { left: 0 !important; right: 0 !important; margin: auto !important; }

.gsc-control-cse table.gsc-search-box .gsc-search-box { margin-bottom: 0 !important; }

.gsc-search-button { margin-left: 2px; }

  /*table.gsc-search-box {
      width: calc(100% + 20px);
      margin-bottom: 0;
  }*/
  table.gsc-search-box td.gsc-input {
    padding-right: 0!important;
  }
  .gsc-input-box {
      border: none!important;
      background: #fff!important;
      padding: 0!important;
      border-radius: 50px 0 0 50px!important;
      border-top: 1px solid #aaaaaa !important;
      border-left: 1px solid #aaaaaa !important;
      border-bottom: 1px solid #aaaaaa !important;
      /*max-width: 220px;*/
  }
  .gsib_a {
    padding: 0 0 0 15px!important;
    /*height: 34px!important;*/
  }
  .gscb_a {
    line-height: 41px!important;
  }
  #gsc-i-id1 {
    background-color: transparent!important;
    height: 41px!important;
    margin: 0!important;
  }
  .gsc-search-button-v2 {
      margin-left: 0!important;
      padding: 0 18px!important;
      height: 43px!important;
      border-top: 1px solid #aaaaaa !important;
      border-right: 1px solid #aaaaaa !important;
      border-bottom: 1px solid #aaaaaa !important;
      border-left: none !important;
      border-radius: 0 50px 50px 0 !important;
      /* border-color: #ECECEC!important; */
      background-color: #fff!important;
      outline: 0!important;
      cursor: pointer;
      transition: 0.3s ease;
  }
  .gsc-search-button-v2 svg {
      fill: #aaaaaa!important;
      transform: rotate(90deg);
      transform: rotate(
  90deg
  ) scale(1.3);
  }
  .gsc-results-wrapper-overlay {
    left: 0!important;
    right: 0!important;
    margin: auto!important;
  }
  .g_search{
    margin-left: 2%;
  }
  .lang_wrapttl {
    line-height: 24px;
    margin-right: 8px;
  }

/*--------------------PC--------------------*/
@media all and (min-width:681px){
  .drawer-navbar {
      z-index: 110;
      position: relative;
  }
  .home header {
      position: absolute;
  }
  header h1 a{
  }
	header h1 a:hover{
		opacity: 1;
	}
  header h1 a img.sp_open{
    display: none;
  }
  header .drawer-container {
      max-width: 1350px;
      min-width: 1000px;
      display: flex;
      width: 100%;
      justify-content: space-between;
      z-index: 1;
      position: relative;
  }

  .gnaviWrap_top {
      margin-top: 20px;
  }
.g_search {
    /* margin-top: auto; */
    max-width: 350px;
    width: 50%;
    z-index: 105;
}
.lang_wrap a:hover {
    color: #fff;
    background-color: #fa858e;
}
  .lang_wrap a + a {
    margin-left: 6px;
  }
  .drawer-navbar .drawer-navbar-header {
      background-color: #fff;
      text-align: initial;
      height: 110px;
      position: relative;
      display: flex;
      align-items: center;
      max-width: 290px;
      width: 25%;
  }
.drawer-navbar.en_header .drawer-navbar-header {
      height: 80px;
      max-width: 200px;
  }
  .gnaviWrap{
    flex: 1;
  }
  .drawer-navbar .drawer-nav {
      height: 100%;
      /*top: 20px;*/
      top: -1px;
      background-color: transparent;
  }
  ul.drawer-menu.menu {
      display: flex;
      justify-content: flex-end;
      /*margin-top: 5px;*/
  }
  ul.drawer-menu.menu li {
      position: relative;
      white-space: nowrap;
  }
  ul.drawer-menu.menu li::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
    background-color: #e60012;
    transform: translateY(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
      transition: .3s ease;
  }
  ul.drawer-menu.menu li a {
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .3s ease;
  }
  ul.drawer-menu.menu li + li{
    margin-left: 4%;
  }
  ul.drawer-menu.menu li:hover::after{
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
  ul.drawer-menu.menu li:hover a{
    color: #e60012;
  }
  ul.drawer-menu.menu li.active::after{
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
  ul.drawer-menu.menu li.active a{
    color: #e60012;
  }
}

/*リキッド用*/
@media all and (min-width:681px) and (max-width:1439px){
  header .drawer-container {
      padding-left: 30px;
      padding-right: 30px;
  }
  /*.g_search {
      right: calc((100% - 1350px) / 2 + 30px);
  }*/
}
@media all and (min-width:681px) and (max-width: 1350px){
  /*.g_search {
      right: 30px;
  }*/
}
@media all and (min-width:681px) and (max-width: 1300px){

}
@media all and (min-width:681px) and (max-width: 1200px){
  ul.drawer-menu.menu li + li{
    margin-left: 3%;
  }
  .lang_wrap a {
      font-size: 10px;
  }
}
@media all and (min-width:681px) and (max-width: 1100px){
  ul.drawer-menu.menu li + li{
    margin-left: 2.5%;
  }
}
@media all and (min-width:681px) and (max-width: 1000px){
  .g_search {
      /*right: calc((100% - 1000px) + 30px);*/
      /* left: auto; */
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
	header{
		height: 70px;
    position: absolute;
	}
  .drawer-open header{
    position: fixed;
  }
.drawer-container {
    transition: 0.3s ease;
}
.drawer-open .drawer-container {
    background: #fa858e;
    /*padding-bottom: 70px;*/
    height: 100vh;
}
header h1 a{
  width: 170px;
}

  .drawer-open header h1 a img.nonePC{
    display: none !important;
  }
  .drawer-open header h1 a img.noneSP{
    display: block !important;
  }
  header h1 a img.sp_open{
    display: none;
  }
  .drawer-open header h1 a img.sp_close{
    display: none;
  }
  .drawer-open header h1 a img.sp_open{
    display: block;
  }
  .drawer-navbar .drawer-navbar-header {
    transition: .3s ease;
  }
  .drawer-open .drawer-navbar .drawer-navbar-header {
      background-color:transparent;
  }
  .drawer--top .drawer-nav {
      top: 0%;
      opacity: 0;
      z-index: -1;
      background-color: transparent;
      pointer-events: none;
      position: fixed;
      top: 200px;
      transition: .3s ease;
  }
  .drawer--top.drawer-open .drawer-nav {
      opacity: 1;
      pointer-events: initial;
      top: auto;
  }
  .drawer-navbar .drawer-navbar-header {
      border-bottom: none;
      height: 70px;
  }
  .drawer-navbar .drawer-navbar-header h1 {
    width: 170px;
    height: auto;
  }
	.drawer-navbar-header {
	    height: 50px;
	}
  .drawer-navbar .drawer-nav {
      /*height: 100vh;*/
      height: auto;
      padding-top: 0;
      /*position: static;*/
      /* min-height: 100%; */
  }
  .drawer-hamburger {
      padding-top: 25px;
      padding-bottom: 24px;
  }
  .drawer--top .drawer-hamburger, .drawer--top.drawer-open .drawer-hamburger {
      top: 10px;
      right: 10px;
      position: absolute;
      width: 26px;
      background-color: #fa858e;
      border-radius: 50px;
  }
  .drawer--top.drawer-open .drawer-hamburger {
    background-color: #fff;
  }
  .drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
    height: 1px;
    margin-top: 0px;
    background-color: #fff;
  }
  .drawer-open .drawer-hamburger-icon:before, .drawer-open .drawer-hamburger-icon:after {
    background-color: #fa858e;
  }
  .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
      top: -8px;
  }
  .drawer-hamburger-icon:after {
    top: 8px;
  }
	.drawer-navbar .drawer-brand {
	    line-height: 50px;
	}
	.drawer-navbar .drawer-navbar-header {
	    border-bottom: none;
	}
  .drawer-navbar .drawer-menu {
    margin-top: 30px;
      padding-bottom: 50px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
  }
  .drawer-navbar .drawer-menu li{
    line-height: 60px;
    border-top: 1px solid #fff;
    text-align: center;
  }
  .drawer-navbar .drawer-menu li a{
    font-size: 18px;
    color: #fff;
  }
  .drawer-navbar .drawer-menu li:last-child{
    border-bottom: 1px solid #fff;
  }

.gsc-input-box {
    width: auto;
}
  .gsc-input-box {
      border-top: none !important;
      border-left: none !important;
      border-bottom: none !important;
  }
  .gsc-search-button-v2 {
      height: 50px!important;
      border-top: none !important;
      border-right: none!important;
      border-bottom: none !important;
  }
  .gsc-search-button-v2 svg {
      fill: #fa858e!important;
      transition: fill 0.3s ease;
      transform: rotate(
  90deg
  ) scale(1.3);
  }
  #gsc-i-id1 {
      height: 50px!important;
  }



  .gnaviWrap{
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      height: 0;
      padding-bottom: 0em;
      /*transition: 0.3s ease;*/
  }
  .drawer-open .gnaviWrap {
    opacity: 1;
    z-index: 105;
    height: auto;
    pointer-events: initial;
    position: fixed;
      padding-bottom: 5em;
}
  .gnaviWrap_top {
      margin-left: 5%;
      margin-right: 5%;
      position: relative;
      flex-wrap: wrap;
      top: 0;
      z-index: 2;
  }
  .g_search {
      /* position: absolute; */
      /* top: 80px; */
      width: 90%;
      margin: 30px auto 0;
  }
  .gsc-input-box {
      max-width: 100%;
  }
.drawer-open .gnaviWrap {
opacity: 1;
z-index: 105;
height: 100%;
pointer-events: initial;
position: relative;
    background-color: #fa858e;
}



  /*.drawer-open .lang_menu_wrap {
    position: absolute;
  }*/
  .gnaviWrap_top .lang_menu_wrap {
    position: absolute;
    top: 460px;
    left: 50%;
    transform: translateX(-50%);
    /*z-index: 100;*/
    width: 150px;
    height: 60px;
    color: #fa858e;
  }

.lang_menu {
    width: 150px;
    line-height: 60px;
    margin-bottom: 0px;
    border: none;
    color: #fa858e;
    font-size: 16px;
}

.lang_menu_wrap::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5.5px 0 5.5px;
  border-color: #fa858e transparent transparent transparent;
  right: 15px;
  top:50%;
  transform: translateY(-10%);
  pointer-events: none;
}

  .drawer-open .gnaviWrap_top select {

  }

  .lang_wrap {
      flex-wrap: wrap;
      margin-top: 10px;
  }
  .lang_wrapttl {
      color: #fff;
      width: 100%;
      text-align: center;
      font-size: 18px;
      margin-right: auto;
      margin-bottom: 10px;
  }
  .lang_wrap a {
      color: #fa858e;
      padding: 10px 12px;
      font-size: 12px;
      font-weight: 700;
      border-radius: 30px;
      margin-right: 10px;
      width: calc((100% - 20px) / 3);
      text-align: center;
  }
  .lang_wrap a + a + a + a{
    margin-top: 10px;
  }
  .lang_wrap a:nth-of-type(3n) {
      margin-right: 0px;
  }
  main{
    padding-top: 70px;
  }

}

/*--------------------iP_SE--------------------*/
@media all and (max-width:320px){
	/*header h1 a img {
	    width: 120px;
	    height: 18px;
	}*/
}


/* content_head
***************************************************************/
.content_head{
  height: 200px;
  background-color: #fcf1f2;
  position: relative;
  overflow: hidden;
}
.content_head.thai {
	height: 245px;
}
.content_head .sec{
  width: 1200px;
  height: 100%;
  min-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 60px;
}

.head_subttl{
  font-size: 20px;
  font-weight: 300;
  color: #fa858e;
}
.head_ttl{
  font-size: 45px;
  font-weight: 700;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}
.bg_txt{
  font-size: 200px;
  font-weight: 300;
  color: #fbe2e4;
  z-index: 0;
  position: absolute;
  bottom: -30px;
  pointer-events: none;
  white-space: nowrap;
}
.breadcrumb{
  display: flex;
  margin-top: 45px;
}
@media screen and (min-width:681px) and (max-width:1200px) {
    .head_subttl,.head_ttl, .breadcrumb {
	    padding-left: 20px;
	}}
.breadcrumb .li1{
  position: relative;
  padding-left: 30px;
}
.breadcrumb .li1::before{
  content: '';
  width: 10px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 10px;
}
.breadcrumb .li1.li_top{
  padding-left: 0;
}
.breadcrumb .li1.li_top::before{
  content: none;
}
.breadcrumb .li_top a{
  position: relative;
  font-size: 14px;
  color: #fa858e;
  padding-left: 25px;
}
.breadcrumb .li_top a::before{
  content: '';
  width: 13px;
  height: 12px;
  background-image: url(../img/common/bread_icon_off.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  transition: 0.3s ease;
}
.breadcrumb .li_in a{
  color: #fa858e;
}
.breadcrumb .li_in::before{
  background-color: #fa858e;
}
/*--------------------PC--------------------*/
@media all and (min-width:681px){
  /*.content_head::after{
    content: '';
    width: 100%;
    height: 20px;
    background-color: #fff;
    position: absolute;
    bottom: -20px;
  }*/
  .breadcrumb .li_top a:hover{
    color: #000;
  }
  .breadcrumb .li_top a:hover::before{
    background-image: url(../img/common/bread_icon_on.svg);
  }
   .breadcrumb .li_in a:hover{
    color: #000;
  }

}
@media all and (min-width:681px) and (max-width: 1000px){
  main {
      display: block;
      position: relative;
      min-width: 1000px;
  }
  .drawer--top.contact main, .drawer--top.goods_cal main {
      min-width: 1200px !important;
  }
}

/*--------------------SP--------------------*/
@media all and (max-width:680px){
  .content_head{
    height: 100px;
  }
	.content_head.thai{
    height: 145px;
  }
  .content_head .sec{
    width: 100%;
    min-width: 100%;
    padding-top: 35px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .head_subttl{
    font-size: 14px;
    position: relative;
    z-index: 2;
  }
  .head_ttl{
    font-size: 25px;
    position: relative;
    z-index: 1;
  }
  .bg_txt{
    font-size: 80px;
    position: absolute;
    bottom: initial;
    top: -25px;
    left: initial;
  }

}
/*--------------------iP_SE--------------------*/
@media all and (max-width:320px){

}

/* serviceWrap
***************************************************************/
.serviceWrap{
  background-color: #f4f4f4;
  padding-top: 150px;
  position: relative;
}
.serviceWrap .bg_txt{
    color: #fff;
    position: absolute;
    bottom: initial;
    top: 75px;
}
/*--------------------PC--------------------*/
@media all and (min-width:681px){
  .serviceWrap .bg_txt{
      right: calc(((100% - 1440px) / 2 ) - 60px);
      left: auto;
  }
}
/*--------------- 681px - 1200px ---------------*/
@media all and (min-width:681px) and (max-width:1200px){
  .serviceWrap .bg_txt{
      right: initial;
      left: 630px;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
  .serviceWrap .bg_txt{
    top: -20px;
    right: -9%;
  }
}

.service_subttl{
  font-size: 16px;
  font-weight: 300;
  color: #fa858e;
}
.service_ttl{
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
}
.serviceWrap_sub > div{
  width: 50%;
  background-color: #fff;
}
.pitapaImage{
  width: 100%;
  height: 410px;
  background-image: url(../img/common/footer_pitapa.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.thrupassImage{
  width: 100%;
  height: 410px;
  background-image: url(../img/common/footer_thrupass.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service_txt{
  width: 100%;
  padding: 20px 0 50px;
  position: relative;
  max-width: 610px;
    margin-left: auto;
}
.serviceWrap_sub02 .service_txtInner{
  width: 100%;
}
.service_txtInner h4{
  font-size: 40px;
  font-weight: 700;
}
.service_txtInner img{
  width: 200px;
}
.service_txtInner p{
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
.service_txtInner .more_btn{
  font-size: 16px;
}
.service_txtInner .more_btn::before{
  width: 24px;
  height: 24px;
  margin-top: -12px;
}

.languageList{
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.languageList li{
  width: 110px;
  height: 40px;
  font-size: 18px;
    display: flex;
    align-items: center;
}
.languageList li:nth-of-type(2){
  font-family: 'Noto Sans SC', sans-serif;
}

.languageList li .kankoku{
  width: 50px;
}
.languageList li .thai{
  width: 73px;
}
.languageList li a{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
/*.languageList li a::before{
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../img/common/arrow_p.jpg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -12px;
    transition: 0.3s;
}*/

.eventWrap{
  padding-bottom: 130px;
}
.eventWrap .eventWrap_sub{
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
    z-index: 1;
    position: relative;
}
/*.eventWrap .eventWrap_sub ul{
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
}*/
.eventWrap .eventWrap_sub ul {
    display: flex;
    /*justify-content: space-between;*/
    background-color: #fff;
    padding: 30px;
    justify-content: center;
}
.eventWrap .eventWrap_sub ul li{
  width: 293px;
}
.serviceWrap.eventWrap .bg_txt{
  top: 85px;
  right: auto;
  left: 51%;
}
.otoku_btn{
  width: 100%;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #fa858e;
  margin-top: 20px;
}
.otoku_btn p{
  font-weight: 700;
  text-align: center;
  color: #fa858e;
}
.otoku_btn p.txt1{
  font-size: 30px;
}
.otoku_btn p.txt2{
  font-size: 40px;
  margin-top: 10px;
}

/*--------------------PC--------------------*/
@media all and (min-width:681px){
  /*.languageList li a:hover{
    opacity: 0.6;
  }*/
  .eventWrap .eventWrap_sub ul li + li {
    margin-left: 30px;
  }
  .otoku_btn:hover{
    opacity: 0.6;
  }
  .serviceWrap .inner{
    max-width: 1200px;
    min-width: 1000px;
    width: 100%;
    z-index: 1;
    position: relative;
  }
  .serviceWrap_sub{
    display: flex;
    margin-top: 40px;
    z-index: 1;
    position: relative;
  }
  .serviceWrap_sub01 .service_txtInner{
    width: 100%;
      margin-left: auto;
      padding-right: 60px;
      text-align: justify;
  }
  .serviceWrap_sub02 .service_txt{
    margin-left: 0;
    padding-left: 60px;
  }
  .service_txtInner .more_btn{
    padding-right: 30px;
    margin-left: 0;
    position: absolute;
    top: 30px;
    right: 60px;
  }

  .languageList li + li{
    margin-left: 35px;
  }
  .languageList li:nth-child(4){
    margin-left: 0;
  }
  body:not(.home) .eventWrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  body:not(.home) .service_txt {
    padding: 20px 0px 50px 20px;
  }
  body:not(.home) .service_subttl {
    padding-left: 20px;
  }
  body:not(.home) .service_ttl {
    padding-left: 20px;
  }

}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
  .serviceWrap{
    padding-top: 50px;
    overflow: hidden;
  }

  .serviceWrap .inner{
    margin-left: 5%;
  }
  .service_subttl{
    font-size: 14px;
  }
  .service_ttl{
    font-size: 25px;
    line-height: 1.4;
    margin-top: 0;
  }

  .serviceWrap_sub > div{
    width: 100%;
  }
  .pitapaImage{
    height: 200px;
    margin-top: 30px;
  }
  .thrupassImage{
    height: 200px;
  }
  .service_txt{
    padding: 20px 5% 60px;
    position: relative;
  }
  .serviceWrap_sub02 .service_txt{
    padding: 20px 5% 50px;
  }
  .serviceWrap_sub01 .service_txt::after {
      content: '';
      width: 90%;
      height: 1px;
      background-color: #fa858e;
      position: absolute;
      bottom: 30px;
  }

  .serviceWrap_sub01 .service_txtInner{
      text-align: justify;
  }

  .service_txtInner h4{
    font-size: 30px;
  }
  .service_txtInner img{
    width: 150px;
  }
  .service_txtInner p{
    font-size: 16px;
    margin-top: 20px;
  }
  .service_txtInner .more_btn{
    position: relative;
    width: 110px;
      margin-right: auto;
      margin-left: auto;
      margin-top: 30px;
      display: block;
  }

  .languageList{
    width: 280px;
  }
  .languageList li{
    width: 120px;
  }
  .languageList li:nth-child(even){
    margin-left: 35px;
  }

  .eventWrap{
    padding-bottom: 50px;
  }
  .eventWrap .eventWrap_sub{
    width: auto;
    padding: 0 5%;
    margin-top: 30px;
  }
  .eventWrap .eventWrap_sub ul{
    display: block;
    padding: 10px;
  }
  .eventWrap .eventWrap_sub ul li{
    width: 100%;
  }
  .eventWrap .eventWrap_sub ul li + li{
    margin-top: 10px;
  }
  .serviceWrap.eventWrap .bg_txt {
      top: -20px;
      right: auto;
      left: 30%;
  }
  .otoku_btn{
    height: 100px;
  }
  .otoku_btn p.txt1{
    font-size: 20px;
  }
  .otoku_btn p.txt2{
    font-size: 20px;
  }

}
/*--------------------iP_SE--------------------*/
@media all and (max-width:320px){

}


/* footer
***************************************************************/
.footer{
  padding: 35px 0 30px;
  border-top: 1px solid #f4f4f4;
}
.footer .inner{
  display: table;
  width: auto;
  min-width: 900px;
}
/* body.home .footer .inner{
	display: table;
  width: auto;
	min-width: 900px;
} */
.footer_link li{
  font-size: 16px;
}
.footer_link li a{
	display: block;
  position: relative;
  padding-left: 18px;
	line-height: 1.5;
}
.footer_link li a::before{
  content: '';
	width: 8px;
	height: 8px;
	border-top: 1px solid #fa858e;
	border-right: 1px solid #fa858e;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0.6em;
}
.copy{
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
}
.at-mark::before {
	content: "@";
}
/*--------------------PC--------------------*/
@media all and (min-width:681px){
  .footer_link{
    display: flex;
    justify-content:space-evenly;
  }
  .footer_link li a:hover{
    /*opacity: 0.6;*/
    color: #fa858e;
  }
  .footer_link li + li{
    margin-left: 20px;
  }
}

@media all and (min-width:681px) and (max-width: 1000px){
  .serviceWrap {
      overflow-x: hidden;
  }
}

/*--------------------SP--------------------*/
@media all and (max-width:680px){
  .footer{
    padding: 40px 0;
  }
  .footer .inner{
    width: 100%;
    margin: 0;
  }
  body.home .footer .inner{
    display: block;
    width: 100%;
    min-width: 0;
		padding-right: 30px;
  }
  .footer_link{
    display: flex;
    flex-direction: column;
  }
  .footer_link li{
    line-height: 2;
    padding-left: 50%;
      margin-left: -120px;
  }

  .copy{
    font-size: 12px;
  }
}
/*--------------------iP_SE--------------------*/
@media all and (max-width:320px){

}
